This commit is contained in:
2024-07-24 14:46:46 +02:00
parent ce267219fa
commit 47d44643c3
16 changed files with 353 additions and 0 deletions

2
postgres/.env Normal file
View File

@@ -0,0 +1,2 @@
POSTGRES_USER=garde-studios
POSTGRES_PASSWORD=garde-studios

18
postgres/compose.yml Normal file
View File

@@ -0,0 +1,18 @@
services:
db:
image: postgres
container_name: pgdb
restart: always
env_file: ./.env
ports:
- "5432:5432"
volumes:
- db_data:/var/lib/postgresql/data
volumes:
db_data:
driver: local
driver_opts:
type: none
device: ./data
o: bind