Spaces:
Runtime error
Runtime error
| version: '3.8' | |
| services: | |
| db: | |
| image: postgres:15 | |
| restart: unless-stopped | |
| environment: | |
| POSTGRES_USER: barouia | |
| POSTGRES_PASSWORD: securepassword # change -> use secrets in production | |
| POSTGRES_DB: barouia_db | |
| volumes: | |
| - barouia_data:/var/lib/postgresql/data | |
| ports: | |
| - "5432:5432" | |
| pgadmin: | |
| image: dpage/pgadmin4 | |
| environment: | |
| PGADMIN_DEFAULT_EMAIL: admin@example.com | |
| PGADMIN_DEFAULT_PASSWORD: admin | |
| ports: | |
| - "8080:80" | |
| depends_on: | |
| - db | |
| volumes: | |
| barouia_data: | |