deploy-machine-learning / docker-compose.yml
marintosti12
feat (api/orm) : first version api with orm
3b97d72
raw
history blame contribute delete
415 Bytes
services:
db:
image: postgres:16
container_name: futurisys-db
environment:
POSTGRES_USER: futu
POSTGRES_PASSWORD: futu_pass
POSTGRES_DB: futurisys
ports:
- "5432:5432"
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U futu -d futurisys"]
interval: 5s
timeout: 5s
retries: 10
volumes:
pgdata: