| 12345678910111213141516171819202122232425262728 |
- # Use postgres/example user/password credentials
- version: '3.1'
- services:
- db:
- image: postgres
- restart: always
- environment:
- POSTGRES_PASSWORD: example
- volumes:
- - /dataimport:/var/dataimport
- adminer:
- image: adminer
- restart: always
- ports:
- - 1122:8080
- pgadmin:
- container_name: pgadmin4_container
- image: dpage/pgadmin4
- restart: always
- environment:
- PGADMIN_DEFAULT_EMAIL: [email protected]
- PGADMIN_DEFAULT_PASSWORD: root
- ports:
- - "5050:80"
|