Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updating compose for v6.27 #344

Merged
merged 1 commit into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions compose-entry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ services:
nginx:
image: "${DOCKER_REGISTRY}/wres/nginx"
container_name: nginx_proxy
restart: always
volumes:
- ${NGINX_SERVER_CERT}:/etc/nginx/cert/wres_server_cert.pem
- ${NGINX_SERVER_KEY}:/etc/nginx/cert/wres_server_key.pem
Expand All @@ -30,6 +31,7 @@ services:
cadvisor:
image: gcr.io/cadvisor/cadvisor:latest
container_name: cadvisor
restart: always
ports:
- 8080:8080
volumes:
Expand All @@ -47,7 +49,7 @@ services:
networks:
wres_net:
persister:
image: "${DOCKER_REGISTRY}/wres/wres-redis:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-redis:20241018-74b8415"
restart: always
volumes:
# For the job data
Expand All @@ -64,7 +66,7 @@ services:
tasker:
ports:
- "443:8443"
image: "${DOCKER_REGISTRY}/wres/wres-tasker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-tasker:20241018-74b8415"
restart: always
depends_on:
broker:
Expand Down Expand Up @@ -100,7 +102,7 @@ services:
- "5671:5671"
- "15671:15671"
- "15691:15691"
image: "${DOCKER_REGISTRY}/wres/wres-broker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-broker:20241018-74b8415"
restart: always
volumes:
# For certificates and keys that correspond to them:
Expand Down Expand Up @@ -128,7 +130,7 @@ services:
healthcheck:
start_period: 5m
worker:
image: "${DOCKER_REGISTRY}/wres/wres-worker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-worker:20241018-74b8415"
restart: always
depends_on:
broker:
Expand Down Expand Up @@ -178,7 +180,7 @@ services:
- 5673
ports:
- 15673:15673
image: "${DOCKER_REGISTRY}/wres/wres-eventsbroker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-eventsbroker:20241018-74b8415"
restart: always
volumes:
# For heap-dump files
Expand All @@ -204,7 +206,7 @@ services:
depends_on:
eventsbroker:
condition: service_started
image: "${DOCKER_REGISTRY}/wres/wres-graphics:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-graphics:20241018-74b8415"
restart: always
volumes:
# To write graphics outputs
Expand All @@ -226,7 +228,7 @@ services:
depends_on:
eventsbroker:
condition: service_started
image: "${DOCKER_REGISTRY}/wres/wres-writing:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-writing:20241018-74b8415"
restart: always
volumes:
# To write numeric outputs
Expand Down
10 changes: 6 additions & 4 deletions compose-workers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ services:
nginx:
image: "${DOCKER_REGISTRY}/wres/nginx"
container_name: nginx_proxy
restart: always
volumes:
- ${NGINX_SERVER_CERT}:/etc/nginx/cert/wres_server_cert.pem
- ${NGINX_SERVER_KEY}:/etc/nginx/cert/wres_server_key.pem
Expand All @@ -30,6 +31,7 @@ services:
cadvisor:
image: gcr.io/cadvisor/cadvisor:latest
container_name: cadvisor
restart: always
ports:
- 8080:8080
volumes:
Expand All @@ -47,7 +49,7 @@ services:
networks:
wres_net:
worker:
image: "${DOCKER_REGISTRY}/wres/wres-worker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-worker:20241018-74b8415"
restart: always
depends_on:
eventsbroker:
Expand Down Expand Up @@ -95,7 +97,7 @@ services:
- 5673
ports:
- 15673:15673
image: "${DOCKER_REGISTRY}/wres/wres-eventsbroker:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-eventsbroker:20241018-74b8415"
restart: always
volumes:
# For heap-dump files
Expand All @@ -121,7 +123,7 @@ services:
depends_on:
eventsbroker:
condition: service_started
image: "${DOCKER_REGISTRY}/wres/wres-graphics:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-graphics:20241018-74b8415"
restart: always
volumes:
# To write graphics outputs
Expand All @@ -143,7 +145,7 @@ services:
depends_on:
eventsbroker:
condition: service_started
image: "${DOCKER_REGISTRY}/wres/wres-writing:20240913-80977b3"
image: "${DOCKER_REGISTRY}/wres/wres-writing:20241018-74b8415"
restart: always
volumes:
# To write numeric outputs
Expand Down
Loading