Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "2"
- services:
- postgres:
- restart: on-failure
- image: postgres:10.6-alpine
- user: "0:33"
- ports:
- - 25432:5432
- environment:
- - POSTGRES_PASSWORD=password
- volumes:
- - ./postgresql:/var/lib/postgresql/data
- pgadmin:
- restart: on-failure
- image: dpage/pgadmin4
- user: "0:33"
- ports:
- - 15432:80
- environment:
- - PGADMIN_DEFAULT_EMAIL=email
- - PGADMIN_DEFAULT_PASSWORD=password
- volumes:
- - ./pgadmin:/var/lib/pgadmin
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement