Kit.Instructage.Postgres/pgAdmin/docker-compose.yml

33 lines
640 B
YAML

version: '3.8'
name: instructage-database
services:
pgadmin:
container_name: pgadmin
image: dpage/pgadmin4:latest
ports:
- 15432:80
environment:
PGADMIN_DEFAULT_EMAIL: sa@sa.sa
PGADMIN_DEFAULT_PASSWORD: simDev321
PGADMIN_LISTEN_PORT: 80
volumes:
- pgadmin:/var/lib/pgadmin
# depends_on:
# - postgres
volumes:
pgadmin:
# name: pgadmin
# driver: local
# driver_opts:
# o: bind
# type: none
# device: D:/Docker/PostgreSQL/PgAdmin
# docker network create fgissout-network
networks:
default:
external: true
name: instructage-network