aboutsummaryrefslogtreecommitdiff
path: root/communities/red-right-hand/174bg.net/production/docker-compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'communities/red-right-hand/174bg.net/production/docker-compose.yaml')
-rw-r--r--communities/red-right-hand/174bg.net/production/docker-compose.yaml11
1 files changed, 10 insertions, 1 deletions
diff --git a/communities/red-right-hand/174bg.net/production/docker-compose.yaml b/communities/red-right-hand/174bg.net/production/docker-compose.yaml
index b5d38b3..333c058 100644
--- a/communities/red-right-hand/174bg.net/production/docker-compose.yaml
+++ b/communities/red-right-hand/174bg.net/production/docker-compose.yaml
@@ -5,4 +5,13 @@ services:
ports:
- "3000:3000/tcp"
- "3000:3000/udp"
- env_file: 174bg-net.env # we don't include this file for obvious reasons, but it should contain the necessary environment variables for the application to run
+ env_file: .env.174bg-net # we don't include this file for obvious reasons, but it should contain the necessary environment variables for the application to run
+
+ postgres:
+ image: postgres:18
+ env_file: .env.postgres
+ ports:
+ - "5432:5432"
+ volumes:
+ - postgres-data:/var/lib/postgresql/data
+ restart: unless-stopped