cuddle-rust-service-plan/templates/docker-compose.local_up.yml.tmpl
kjuulh dce4bf4e36
feat: with initial rust service
Signed-off-by: kjuulh <contact@kjuulh.io>
2023-07-01 23:40:16 +02:00

18 lines
283 B
Cheetah

version: '3.7'
services:
db:
build:
context: .
dockerfile: local_up.Dockerfile
restart: always
environment:
- POSTGRES_PASSWORD=somenotverysecurepassword
ports:
- 5432:5432
volumes:
- pgdata:/var/lib/postgresql/data
volumes:
pgdata: