From c51f1cb6a2499fbfdbaa451995f13cfafe6149c5 Mon Sep 17 00:00:00 2001 From: Owen Date: Tue, 4 Feb 2025 22:28:16 -0500 Subject: [PATCH] Add network config to compose; Resolves #155 --- docker-compose.example.yml | 5 +++++ install/fs/docker-compose.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/docker-compose.example.yml b/docker-compose.example.yml index a0ede159..bc5ad10c 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -49,3 +49,8 @@ services: volumes: - ./traefik:/etc/traefik:ro # Volume to store the Traefik configuration - ./letsencrypt:/letsencrypt # Volume to store the Let's Encrypt certificates + +networks: + default: + driver: bridge + name: pangolin \ No newline at end of file diff --git a/install/fs/docker-compose.yml b/install/fs/docker-compose.yml index 5b81a6a7..ea673eb0 100644 --- a/install/fs/docker-compose.yml +++ b/install/fs/docker-compose.yml @@ -55,3 +55,8 @@ services: volumes: - ./config/traefik:/etc/traefik:ro # Volume to store the Traefik configuration - ./config/letsencrypt:/letsencrypt # Volume to store the Let's Encrypt certificates + +networks: + default: + driver: bridge + name: pangolin \ No newline at end of file