mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-09 14:00:15 -04:00
26 lines
506 B
YAML
26 lines
506 B
YAML
version: "3"
|
|
|
|
services:
|
|
db:
|
|
image: "postgres:latest"
|
|
ports:
|
|
- "5432:5432"
|
|
env_file:
|
|
- ./backend/.env
|
|
volumes:
|
|
- compass-center-postgres:/var/lib/postgresql/data
|
|
# - ./backend/init.sql:/docker-entrypoint-initdb.d/init.sql:ro
|
|
|
|
pgadmin:
|
|
image: dpage/pgadmin4:latest
|
|
environment:
|
|
PGADMIN_DEFAULT_EMAIL: admin@example.com
|
|
PGADMIN_DEFAULT_PASSWORD: admin
|
|
ports:
|
|
- "5050:80"
|
|
depends_on:
|
|
- db
|
|
|
|
volumes:
|
|
compass-center-postgres:
|