version: "3.8" services: db: image: postgres:14.1-alpine container_name: postgres restart: always ports: - "5432:5432" environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres volumes: #- db:/var/lib/postgresql/data - ./PostgreSQL:/var/lib/postgresql/data pgadmin: image: dpage/pgadmin4:7.2 container_name: pgadmin4_container restart: always ports: - "5050:80" environment: PGADMIN_DEFAULT_EMAIL: admin@fh-swf.de PGADMIN_DEFAULT_PASSWORD: admin volumes: # - pgadmin:/var/lib/pgadmin - ./pgadmin:/var/lib/pgadmin mongodb: image: mongo:7.0.0-rc4 ports: - '27017:27017' volumes: # - dbdata6:/data/db - ./mongo:/data/db