From 31709ef781d28f762d80a9f92a1ed103c4a94b30 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=28Kusalananda=29=20K=C3=A4h=C3=A4ri?= Date: Wed, 1 Nov 2023 16:16:03 +0100 Subject: [PATCH] Remove use of external Docker network Corresponds to the live changes made on the 31st of October where a Docker-related networking issue forced us to move the service into an LXC container. The use of an external Docker network was a hack to cope with an earlier Docker network issue. That issue was resolved when setting up the service in LXC. --- production/docker-compose.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/production/docker-compose.yml b/production/docker-compose.yml index 5d3482ba..4a387680 100644 --- a/production/docker-compose.yml +++ b/production/docker-compose.yml @@ -21,8 +21,6 @@ services: restart: always env_file: - ./urdr.env - networks: - - redmine_net nginx: image: ghcr.io/nbisweden/urdr-web:${TAG:-latest} @@ -40,12 +38,6 @@ services: ports: - 4567:80 restart: always - networks: - - redmine_net volumes: exclude: null - -networks: - redmine_net: - external: true