24 lines
431 B
YAML
24 lines
431 B
YAML
version: '3.5'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:12
|
|
volumes:
|
|
- data:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
|
|
pgadmin:
|
|
image: dpage/pgadmin4:4
|
|
ports:
|
|
- 8090:80
|
|
volumes:
|
|
- pgadmin:/var/lib/pgadmin
|
|
environment:
|
|
PGADMIN_DEFAULT_EMAIL: postgres
|
|
PGADMIN_DEFAULT_PASSWORD: postgres
|
|
|
|
volumes:
|
|
data:
|
|
pgadmin: |