test
All checks were successful
Main Build Process / generate documentation (pull_request) Successful in 1m37s
All checks were successful
Main Build Process / generate documentation (pull_request) Successful in 1m37s
This commit is contained in:
24
docker-prod/compose.yml
Normal file
24
docker-prod/compose.yml
Normal file
@@ -0,0 +1,24 @@
|
||||
services:
|
||||
postgresql:
|
||||
image: postgres:16
|
||||
ports:
|
||||
- "${DB_PORT:-5432}:5432"
|
||||
volumes:
|
||||
- ./data/postgres/:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_DB=${DB_DATABASE:-ludikZone}
|
||||
- POSTGRES_USER=${DB_USER:-admin}
|
||||
- POSTGRES_PASSWORD=${DB_PASSWORD:-admin}
|
||||
|
||||
ludikzone:
|
||||
image: gitea.borealian.ovh/mcmuzzle/ludikzone:latest
|
||||
ports:
|
||||
- 8080:8080
|
||||
environment:
|
||||
- DB_HOST=${DB_HOST:-"postgresql"}
|
||||
- DB_PORT=${DB_PORT:-5432}
|
||||
- DB_USER=${DB_USER:-"admin"}
|
||||
- DB_PASSWORD=${DB_PASSWORD:-"admin"}
|
||||
- DB_DATABASE=${DB_DATABASE:-"ludikZone"}
|
||||
depends_on:
|
||||
- postgresql
|
||||
Reference in New Issue
Block a user