Skip to content

Commit

Permalink
Fully qualify image sources. (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
jose1711 authored Jun 30, 2024
1 parent eae1155 commit cf4c923
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion examples/caprover-one-click-app.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
captainVersion: 4
services:
$$cap_appname-redis:
image: redis:$$cap_redis_version
image: docker.io/library/redis:$$cap_redis_version
container_name: $$cap_appname-redis
restart: always
caproverExtra:
Expand Down
6 changes: 3 additions & 3 deletions examples/digitalocean-1click/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ services:
command: celery -A gramps_webapi.celery worker --loglevel=INFO

grampsweb_redis:
image: redis:7.2.4-alpine
image: docker.io/library/redis:7.2.4-alpine
container_name: grampsweb_redis
restart: always

proxy:
image: nginxproxy/nginx-proxy
image: docker.io/nginxproxy/nginx-proxy
container_name: nginx-proxy
restart: always
ports:
Expand All @@ -66,7 +66,7 @@ services:
- proxy-tier

acme-companion:
image: nginxproxy/acme-companion
image: docker.io/nginxproxy/acme-companion
container_name: nginx-proxy-acme
restart: always
environment:
Expand Down
4 changes: 2 additions & 2 deletions examples/docker-compose-base/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ services:
command: celery -A gramps_webapi.celery worker --loglevel=INFO

grampsweb_redis:
image: redis:7.2.4-alpine
image: docker.io/library/redis:7.2.4-alpine
container_name: grampsweb_redis
restart: always

Expand All @@ -44,4 +44,4 @@ volumes:
gramps_secret:
gramps_db:
gramps_media:
gramps_tmp:
gramps_tmp:
6 changes: 3 additions & 3 deletions examples/docker-compose-letsencrypt/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ services:
command: celery -A gramps_webapi.celery worker --loglevel=INFO

grampsweb_redis:
image: redis:7.2.4-alpine
image: docker.io/library/redis:7.2.4-alpine
container_name: grampsweb_redis
restart: always

proxy:
image: nginxproxy/nginx-proxy
image: docker.io/nginxproxy/nginx-proxy
container_name: nginx-proxy
restart: always
ports:
Expand All @@ -67,7 +67,7 @@ services:
- proxy-tier

acme-companion:
image: nginxproxy/acme-companion
image: docker.io/nginxproxy/acme-companion
container_name: nginx-proxy-acme
restart: always
environment:
Expand Down

0 comments on commit cf4c923

Please sign in to comment.