Pull in code from pool_elo
need to re-integrate yugioh code
This commit is contained in:
4
.dev_docker/.env
Normal file
4
.dev_docker/.env
Normal file
@@ -0,0 +1,4 @@
|
||||
POSTGRES_DB=yugi_app
|
||||
POSTGRES_USER=yugi
|
||||
POSTGRES_PASSWORD=yugi
|
||||
DATABASE_URL=postgres://yugi:yugi@db:5432/yugi_app
|
||||
18
.dev_docker/docker-compose.yml
Normal file
18
.dev_docker/docker-compose.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
services:
|
||||
db:
|
||||
image: postgres:15.3-alpine
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 5433:5432
|
||||
networks:
|
||||
- db
|
||||
volumes:
|
||||
- postgres-data:/var/lib/postgresql/data
|
||||
env_file:
|
||||
- .env
|
||||
|
||||
volumes:
|
||||
postgres-data:
|
||||
|
||||
networks:
|
||||
db:
|
||||
Reference in New Issue
Block a user