From 5868459d79e18282ae35bd4eb35dddb215d5372d Mon Sep 17 00:00:00 2001 From: erangel1 Date: Tue, 16 Jun 2026 15:49:59 +0000 Subject: [PATCH] updated file to add homelab docker network --- docker-compose.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index e6390bc..9ba50f8 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -6,6 +6,8 @@ services: depends_on: db: condition: service_healthy + networks: + - homelab environment: - DATABASE_URL=postgres://miniflux:miniflux@db/miniflux?sslmode=disable - RUN_MIGRATIONS=1 @@ -16,6 +18,8 @@ services: test: ["CMD", "/usr/bin/miniflux", "-healthcheck", "auto"] db: image: postgres:18 + networks: + - homelab environment: - POSTGRES_USER=miniflux - POSTGRES_PASSWORD=miniflux @@ -31,4 +35,7 @@ services: interval: 10s start_period: 30s volumes: - miniflux-db: \ No newline at end of file + miniflux-db: +networks: + homelab: + external: true \ No newline at end of file