website/compose.yml

28 lines
700 B
YAML
Raw Normal View History

2022-11-09 20:42:34 +02:00
services:
2022-12-30 19:56:51 +02:00
website:
container_name: website
#image: realprojectsegfault/website
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
2022-11-09 20:42:34 +02:00
ports:
2022-12-30 19:56:51 +02:00
- 1337:4173
volumes:
- ./config:/app/config
2022-12-30 19:56:51 +02:00
website-db:
image: postgres
container_name: website-db
environment:
2022-12-30 19:56:51 +02:00
POSTGRES_USER: postgres
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
PGDATA: /data/postgres
POSTGRES_DB: website
volumes:
- website-db-data:/data/postgres
ports:
- "5432:5432"
restart: unless-stopped
volumes:
2022-12-30 19:56:51 +02:00
website-db-data: