32 lines
570 B
YAML
32 lines
570 B
YAML
version: "3"
|
|
|
|
services:
|
|
db:
|
|
image: postgres:11
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_DB=foo
|
|
web:
|
|
build: .
|
|
command: /code/entrypoint.sh
|
|
volumes:
|
|
- .:/code
|
|
ports:
|
|
- "8000:8000"
|
|
- "5678:5678"
|
|
depends_on:
|
|
- db
|
|
|
|
# pgadmin:
|
|
# image: dpage/pgadmin4
|
|
# environment:
|
|
# - PGADMIN_DEFAULT_EMAIL=pgadmin4@pgadmin.org
|
|
# - PGADMIN_DEFAULT_PASSWORD=admin
|
|
# ports:
|
|
# - "5050:80"
|
|
# depends_on:
|
|
# - db
|