Skip to content

Commit 47867b6

Browse files
MarDiehlblueraft
andauthored
using fully qualified image names (#92)
* using fully qualified image names this allows podman to find the images on DockerHub * Update docker-compose.yaml --------- Co-authored-by: Ahmed Ilyas <[email protected]>
1 parent 49181d5 commit 47867b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker-compose.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
# broker for celery
33
rabbitmq:
44
restart: unless-stopped
5-
image: rabbitmq:3.11.5
5+
image: docker.io/rabbitmq:3.11.5
66
container_name: nomad_oasis_rabbitmq
77
environment:
88
- RABBITMQ_ERLANG_COOKIE=SWQOKODSQALRPCLNMEQG
@@ -43,7 +43,7 @@ services:
4343
# the user data db
4444
mongo:
4545
restart: unless-stopped
46-
image: mongo:5.0.6
46+
image: docker.io/mongo:5.0.6
4747
container_name: nomad_oasis_mongo
4848
environment:
4949
- MONGO_DATA_DIR=/data/db
@@ -189,7 +189,7 @@ services:
189189
# nomad proxy (a reverse proxy for nomad)
190190
proxy:
191191
restart: unless-stopped
192-
image: nginx:1.27.4-alpine
192+
image: docker.io/nginx:1.27.4-alpine
193193
container_name: nomad_oasis_proxy
194194
command: nginx -g 'daemon off;'
195195
volumes:

0 commit comments

Comments
 (0)