Skip to content

Commit 99cb9e4

Browse files
authored
Merge pull request #338 from ByteInternet/make-use-of-latest-hypernode-deploy-image-in-docs
Make use of :latest Hypernode Deploy image in docs
2 parents c12eef4 + 94a9748 commit 99cb9e4

File tree

7 files changed

+20
-21
lines changed

7 files changed

+20
-21
lines changed

.github/workflows/cleanup_acceptance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
cleanup:
99
runs-on: ubuntu-latest
10-
container: quay.io/hypernode/deploy:4-php8.3-node20
10+
container: quay.io/hypernode/deploy:latest-php8.3-node20
1111
environment: acceptance
1212
steps:
1313
- uses: actions/checkout@v2

.github/workflows/deploy.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
container: quay.io/hypernode/deploy:4-php8.3-node20
15+
container: quay.io/hypernode/deploy:latest-php8.3-node20
1616
steps:
1717
- uses: actions/checkout@v3
1818
with:
@@ -47,7 +47,7 @@ jobs:
4747
name: acceptance
4848
url: ${{ steps.get_brancher_hostname.outputs.BRANCHER_URL }}
4949
if: github.ref != 'refs/heads/master'
50-
container: quay.io/hypernode/deploy:4-php8.3-node20
50+
container: quay.io/hypernode/deploy:latest-php8.3-node20
5151
steps:
5252
- uses: actions/checkout@v3
5353
with:
@@ -102,7 +102,7 @@ jobs:
102102
name: production
103103
url: https://docs.hypernode.io
104104
if: github.ref == 'refs/heads/master'
105-
container: quay.io/hypernode/deploy:4-php8.3-node20
105+
container: quay.io/hypernode/deploy:latest-php8.3-node20
106106
steps:
107107
- uses: actions/checkout@v3
108108
- name: download build artifact

docs/hypernode-deploy/getting-started/configure-ci-cd.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ env:
103103
jobs:
104104
build:
105105
runs-on: ubuntu-latest
106-
# Here we use the Hypernode Deploy v4 image with PHP 8.3 and Node.js 20
107-
container: quay.io/hypernode/deploy:4-php8.3-node20
106+
# Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 20
107+
container: quay.io/hypernode/deploy:latest-php8.3-node20
108108
steps:
109109
- uses: actions/checkout@v2
110110
- uses: actions/cache@v2
@@ -137,8 +137,8 @@ jobs:
137137
deploy:
138138
needs: build
139139
runs-on: ubuntu-latest
140-
# Here we use the Hypernode Deploy v4 image with PHP 8.3 and Node.js 20
141-
container: quay.io/hypernode/deploy:4-php8.3-node20
140+
# Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 20
141+
container: quay.io/hypernode/deploy:latest-php8.3-node20
142142
steps:
143143
- uses: actions/checkout@v2
144144
- name: download build artifact

docs/hypernode-deploy/pipelines/bitbucket-pipelines.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ Create the file `bitbucket-pipelines.yml` with the contents below.
5858
This workflow will be used in other workflows.
5959

6060
```yaml
61-
image: quay.io/hypernode/deploy:4-php8.3-node20
61+
# Here we use the latest Hypernode Deploy image with PHP 8.3 and Node.js 20
62+
image: quay.io/hypernode/deploy:latest-php8.3-node20
6263

6364
definition:
6465
steps:
@@ -74,10 +75,7 @@ definition:
7475
Don't forget to set the specifications of the image to what your project needs. The same goes for the deploy steps.
7576
For example, if your project needs PHP 8.3 and Node.js 20, set the image to:
7677
```yaml
77-
jobs:
78-
build:
79-
container: quay.io/hypernode/deploy:4-php8.3-node20
80-
...
78+
image: quay.io/hypernode/deploy:latest-php8.3-node20
8179
```
8280
````
8381

docs/hypernode-deploy/pipelines/github-actions.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ on:
5757
jobs:
5858
build:
5959
runs-on: ubuntu-latest
60-
container: quay.io/hypernode/deploy:4-php8.3-node20
60+
# See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags.
61+
container: quay.io/hypernode/deploy:latest-php8.3-node20
6162
steps:
6263
- uses: actions/checkout@v3
6364
- uses: actions/cache@v3
@@ -82,7 +83,7 @@ For example, if your project needs PHP 8.3 and Node.js 20, set the image to:
8283
```yaml
8384
jobs:
8485
build:
85-
container: quay.io/hypernode/deploy:4-php8.3-node20
86+
container: quay.io/hypernode/deploy:latest-php8.3-node20
8687
...
8788
```
8889
````
@@ -112,7 +113,7 @@ jobs:
112113
environment:
113114
name: production
114115
url: https://www.example.com
115-
container: quay.io/hypernode/deploy:4-php8.3-node20
116+
container: quay.io/hypernode/deploy:latest-php8.3-node20
116117
steps:
117118
- uses: actions/checkout@v3
118119
- name: download build artifact
@@ -156,7 +157,7 @@ jobs:
156157
environment:
157158
name: acceptance
158159
url: https://acceptance.example.com
159-
container: quay.io/hypernode/deploy:4-php8.3-node20
160+
container: quay.io/hypernode/deploy:latest-php8.3-node20
160161
steps:
161162
- uses: actions/checkout@v3
162163
- name: download build artifact

docs/hypernode-deploy/pipelines/gitlab-ci.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This sets the container image, defines the CI/CD stages and defines the build st
4949

5050
```yaml
5151
# See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags.
52-
image: quay.io/hypernode/deploy:4-php8.3-node20
52+
image: quay.io/hypernode/deploy:latest-php8.3-node20
5353

5454
stages:
5555
- build
@@ -72,7 +72,7 @@ build:
7272
Don't forget to set the specifications of the image to what your project needs.
7373
For example, if your project needs PHP 8.3 and Node.js 16, set the image to:
7474
```yaml
75-
image: quay.io/hypernode/deploy:3-php8.3-node16
75+
image: quay.io/hypernode/deploy:latest-php8.3-node16
7676
```
7777
````
7878

docs/hypernode-platform/tools/how-to-deploy-your-application-using-hypernode-deploy-v1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ defaults:
166166
jobs:
167167
build:
168168
runs-on: ubuntu-latest
169-
container: quay.io/hypernode/deploy:4-php8.3-node20
169+
container: quay.io/hypernode/deploy:latest-php8.3-node20
170170
steps:
171171
- uses: actions/checkout@v2
172172
- uses: actions/cache@v2
@@ -186,7 +186,7 @@ jobs:
186186
deploy_staging:
187187
needs: build
188188
runs-on: ubuntu-latest
189-
container: quay.io/hypernode/deploy:4-php8.3-node20
189+
container: quay.io/hypernode/deploy:latest-php8.3-node20
190190
steps:
191191
- uses: actions/checkout@v2
192192
- name: download build artifact

0 commit comments

Comments
 (0)