Add .env file to copilot-backend service
Taylor committed
Feb 12, 2024 at 08:38 UTC
985dde815a2a58de7397fe0403479f9a083a3b1a
2 files changed
+2
docker-compose.dev.yml
+1
@@ -9,6 +9,7 @@ services:
9
- ./data/copilot-backend-data/logs:/opt/logs
10
# Mount the copilot.db file to persist the database
11
- ./data/data:/opt/copilot/backend/data
12
+ env_file: .env
13
14
copilot-frontend:
15
build:
docker-compose.yml
+1
@@ -7,6 +7,7 @@ services:
7
- ./data/copilot-backend-data/logs:/opt/logs
8
# Mount the copilot.db file to persist the database
9
- ./data/data:/opt/copilot/backend/data
10
+ env_file: .env
11
12
copilot-frontend:
13
image: ghcr.io/socfortress/copilot-frontend:latest