version: '3.1' services: postgres: image: winwinkeeper/postgres-backend-core:1.0.0 hostname: postgres ports: - "5432:5432" environment: POSTGRES_PASSWORD: postgres POSTGRES_USER: postgres pgadmin: image: dpage/pgadmin4 depends_on: - postgres ports: - "8080:80" environment: PGADMIN_DEFAULT_EMAIL: pgadmin4@pgadmin.org PGADMIN_DEFAULT_PASSWORD: admin restart: unless-stopped