From 2fb48e2a92ed525896a81674dcee04ccea68bc22 Mon Sep 17 00:00:00 2001 From: Evan Pagryzinski Date: Tue, 3 Sep 2024 13:11:53 -0400 Subject: [PATCH] Adding registry to compose forgot to add the registry we push these images to, quick follow up --- compose-entry.template.yml | 2 +- compose-workers.template.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compose-entry.template.yml b/compose-entry.template.yml index 8c99579ef..daabe8dd6 100644 --- a/compose-entry.template.yml +++ b/compose-entry.template.yml @@ -16,7 +16,7 @@ volumes: device: "${NFS_HOME_DIR_DEVICE}" services: nginx: - image: "wres/nginx" + image: "${DOCKER_REGISTRY}/wres/nginx" container_name: nginx_proxy volumes: - ${NGINX_SERVER_CERT}:/etc/nginx/cert/wres_server_cert.pem diff --git a/compose-workers.template.yml b/compose-workers.template.yml index 0da6a86cc..5e107d829 100644 --- a/compose-workers.template.yml +++ b/compose-workers.template.yml @@ -16,7 +16,7 @@ volumes: device: "${NFS_HOME_DIR_DEVICE}" services: nginx: - image: "wres/nginx" + image: "${DOCKER_REGISTRY}/wres/nginx" container_name: nginx_proxy volumes: - ${NGINX_SERVER_CERT}:/etc/nginx/cert/wres_server_cert.pem