Files
postgres/docker-compose.yaml
welld1 118ea1b5c2 init
2020-05-28 16:58:35 -04:00

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: