Initial commit
This commit is contained in:
commit
14eacfba5d
24 changed files with 9461 additions and 0 deletions
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
services:
|
||||
db:
|
||||
image: postgres:16
|
||||
container_name: finntrack_db
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
POSTGRES_DB: finntrack
|
||||
POSTGRES_USER: finntrack
|
||||
POSTGRES_PASSWORD: finntrack
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
- ./db/init:/docker-entrypoint-initdb.d:ro
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
Loading…
Add table
Add a link
Reference in a new issue