Skip to content

Commit

Permalink
[DDS-1874] Fixed tag reference.
Browse files Browse the repository at this point in the history
  • Loading branch information
GROwen committed Feb 29, 2024
1 parent 72089a0 commit a3e31f9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions images/awx-ee/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The AWX execution environment is a container image that AWX will use to execute
- `requirements.txt`: Defined python dependencies
- `requirements.yml`: Ansible collections to install

AWX has `ghcr.io/dpc-sdp/bay/awx-ee:5.x` added as an execution environment with a pull policy of always, when the image is updated kuberenetes will pull a new image to run the plays in.
AWX has `ghcr.io/dpc-sdp/bay/awx-ee:6.x` added as an execution environment with a pull policy of always, when the image is updated kuberenetes will pull a new image to run the plays in.

## Dependencies

Expand All @@ -20,7 +20,7 @@ AWX has `ghcr.io/dpc-sdp/bay/awx-ee:5.x` added as an execution environment with
Commands run from this directory if you have ansible-builder installed locally.

```
$ ansible-builder build --tag ghcr.io/dpc-sdp/bay/awx-ee:5.x --container-runtime docker
$ ansible-builder build --tag ghcr.io/dpc-sdp/bay/awx-ee:6.x --container-runtime docker
```

OR run with docker.
Expand All @@ -31,14 +31,14 @@ $ docker run --rm -it \
-v $(pwd):/data \
-w /data \
quay.io/ansible/ansible-builder:latest \
ansible-builder build --tag ghcr.io/dpc-sdp/bay/awx-ee:5.x --container-runtime docker
ansible-builder build --tag ghcr.io/dpc-sdp/bay/awx-ee:6.x --container-runtime docker
# Build the image
$ docker build -f context/Dockerfile -t ghcr.io/dpc-sdp/bay/awx-ee:5.x context
$ docker build -f context/Dockerfile -t ghcr.io/dpc-sdp/bay/awx-ee:6.x context
```

## Deploying the image

```
$ docker push ghcr.io/dpc-sdp/bay/awx-ee:5.x
$ docker push ghcr.io/dpc-sdp/bay/awx-ee:6.x
```
2 changes: 1 addition & 1 deletion images/mailhog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You can also use it in your Docker Compose stack with the following snippet:
```
services:
mailhog:
image: ghcr.io/dpc-sdp/bay/mailhog:5.x
image: ghcr.io/dpc-sdp/bay/mailhog:6.x
ports:
- 1025
- 8025
Expand Down
2 changes: 1 addition & 1 deletion images/nginx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can also use it in your Docker Compose stack with the following snippet:
```
services:
nginx:
image: ghcr.io/dpc-sdp/bay/nginx:5.x
image: ghcr.io/dpc-sdp/bay/nginx:6.x
volumes:
- path/to/app:/app
ports:
Expand Down
2 changes: 1 addition & 1 deletion images/node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ You can also use it in your Docker Compose stack with the following snippet:
```
services:
app:
image: ghcr.io/dpc-sdp/bay/node:5.x
image: ghcr.io/dpc-sdp/bay/node:6.x
volumes:
- path/to/app:/app
ports:
Expand Down
2 changes: 1 addition & 1 deletion images/php/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ You can also use it in your Docker Compose stack with the following snippet:
```
services:
nginx:
image: ghcr.io/dpc-sdp/bay/php-fpm:5.x
image: ghcr.io/dpc-sdp/bay/php-fpm:6.x
volumes:
- path/to/app:/app
ports:
Expand Down

0 comments on commit a3e31f9

Please sign in to comment.