docpet_backend_service / docker-compose.yml
tebakaja's picture
migrate: GCP to Hugging Face
b6f0f70
raw
history blame
249 Bytes
version: '3.3'
services:
postgres:
image: postgres
container_name: postgres
ports:
- '6500:5432'
restart: always
env_file:
- ./.env
volumes:
- postgres-db:/var/lib/postgresql/data
volumes:
postgres-db: