From 32bd26c4306326ca27ea0800982f3ff718d459f1 Mon Sep 17 00:00:00 2001 From: naterfute Date: Wed, 2 Apr 2025 17:47:32 -0700 Subject: [PATCH] added environment files to all containers --- blueprints/plane/docker-compose.yml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/blueprints/plane/docker-compose.yml b/blueprints/plane/docker-compose.yml index 96044848..8a71dc34 100644 --- a/blueprints/plane/docker-compose.yml +++ b/blueprints/plane/docker-compose.yml @@ -41,10 +41,8 @@ services: - pgdata:/var/lib/postgresql/data environment: - PGDATA: /var/lib/postgresql/data - - POSTGRES_USER - - POSTGRES_PASSWORD - - POSTGRES_DB - + env_file: + - .env web: image: makeplane/plane-space:v0.25.3 restart: unless-stopped @@ -55,6 +53,8 @@ services: depends_on: - api - worker + env_file: + - .env space: image: makeplane/plane-space:v0.25.3 @@ -67,6 +67,8 @@ services: - api - worker - web + env_file: + - .env admin: image: makeplane/plane-admin:v0.25.3 @@ -79,6 +81,8 @@ services: - api - worker - web + env_file: + - .env live: image: makeplane/plane-live:v0.25.3 @@ -91,6 +95,8 @@ services: - api - worker - web + env_file: + - .env api: image: makeplane/plane-backend:v0.25.3 @@ -100,10 +106,11 @@ services: volumes: - apiserver:/code command: bin/docker-entrypoint-api-local.sh - depends_on: - plane-db - plane-redis + env_file: + - .env worker: image: makeplane/plane-worker:0.11 @@ -117,6 +124,8 @@ services: - api - plane-db - plane-redis + env_file: + - .env beat-worker: image: makeplane/plane-worker:0.11 @@ -130,6 +139,8 @@ services: - api - plane-db - plane-redis + env_file: + - .env migrator: image: makeplane/plane-worker:0.11 @@ -142,6 +153,8 @@ services: depends_on: - plane-db - plane-redis + env_file: + - .env volumes: