From 2b5af5146d7c22eac4a5150a038a05620ec5b8a3 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 4 Mar 2022 19:07:57 +0100 Subject: build(docker): make Docker deployement compatible with Docker Swarm I also added a custom script to deploy the services with Docker Swarm. Without it, Docker cannot read the `.env` file. Since I'm using a variable to define the registry, the script is required. --- docker-compose.yml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docker-compose.yml') diff --git a/docker-compose.yml b/docker-compose.yml index 8d0ad57..791f1ef 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,7 @@ version: '3.8' services: apcom: + image: ${APP_DOCKER_REGISTRY_DOMAIN}/apcom build: context: . dockerfile: Dockerfile @@ -16,6 +17,7 @@ services: - '${APP_DOCKER_PORT:-3000}:${APP_DOCKER_PORT:-3000}' restart: always apcom-staging: + image: ${APP_DOCKER_REGISTRY_DOMAIN}/apcom-staging build: context: . dockerfile: Dockerfile -- cgit v1.2.3