Spaces:
Sleeping
Sleeping
| # docker-compose.yml | |
| version: '3.8' | |
| services: | |
| db: | |
| image: postgres:15 | |
| container_name: jobpilot_db | |
| restart: unless-stopped | |
| env_file: | |
| - .env | |
| environment: | |
| POSTGRES_DB: ${DB_NAME} | |
| POSTGRES_USER: ${DB_USER} | |
| POSTGRES_PASSWORD: ${DB_PASSWORD} | |
| ports: | |
| - "5432:5432" | |
| volumes: | |
| - postgres_data:/var/lib/postgresql/data | |
| volumes: | |
| postgres_data: |