From 5792a61b514a622ffbfb140dc3199821a6ebea3c Mon Sep 17 00:00:00 2001 From: Darren Reid Date: Mon, 13 Nov 2023 14:12:15 +1100 Subject: [PATCH] Update docker-compose-template.yml --- .deploy/docker-compose-template.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.deploy/docker-compose-template.yml b/.deploy/docker-compose-template.yml index d80f58c..cde0538 100644 --- a/.deploy/docker-compose-template.yml +++ b/.deploy/docker-compose-template.yml @@ -3,7 +3,6 @@ services: ${APP_NAME}: image: ghcr.io/${IMAGE_REPO}:${RELEASE_VERSION} restart: always - network_mode: bridge ports: - "80" - "5051:5051" @@ -13,3 +12,8 @@ services: LETSENCRYPT_HOST: ${HOST_DOMAIN} LETSENCRYPT_EMAIL: ${LETSENCRYPT_EMAIL} DEPLOY_API: ${DEPLOY_API} + +networks: + default: + external: true + name: nginx