mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
28 lines
No EOL
541 B
YAML
28 lines
No EOL
541 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
model-backend:
|
|
user: "${UID}:${GID}"
|
|
build:
|
|
context: ../..
|
|
dockerfile: .devcontainer/backend/Dockerfile
|
|
command: sleep infinity
|
|
volumes:
|
|
- ../../:/workspaces/model
|
|
|
|
|
|
db:
|
|
image: postgres:17.4
|
|
restart: unless-stopped
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
- PGDATABASE=tech_team_local_db
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=makingwarmerhomes
|
|
volumes:
|
|
- postgres-data-two:/var/lib/postgresql/data
|
|
|
|
|
|
volumes:
|
|
postgres-data-two: |