2
1
mirror of https://github.com/Thream/api.git synced 2024-07-21 03:38:31 +02:00
api/.devcontainer/compose.yaml

24 lines
507 B
YAML
Raw Permalink Normal View History

2021-10-24 04:18:18 +02:00
services:
workspace:
build:
context: "./"
dockerfile: "./Dockerfile"
2021-10-24 04:18:18 +02:00
volumes:
- "..:/workspace:cached"
command: "sleep infinity"
network_mode: "host"
2021-10-24 04:18:18 +02:00
thream-database:
image: "postgres:15.4"
2021-10-24 04:18:18 +02:00
environment:
POSTGRES_USER: "thream_user"
POSTGRES_PASSWORD: "password"
POSTGRES_DB: "thream"
2021-10-24 04:18:18 +02:00
volumes:
- "thream-postgres-data:/var/lib/postgresql/data"
restart: "unless-stopped"
network_mode: "host"
2021-10-24 04:18:18 +02:00
volumes:
2023-07-22 16:26:27 +02:00
thream-postgres-data: