Untitled
unknown
plain_text
2 years ago
782 B
5
Indexable
version: '3.8' services: GraphQLApi-dev: image: graphdockerimgdev build: context: . dockerfile: ./GraphQLApi/Dockerfile.dev ports: - 5230:5229 swwao_pg-db-dev: container_name: postgres-dev image: postgres:latest environment: - POSTGRES_USER=${POSTGRES_USER} - POSTGRES_PASSWORD=${POSTGRES_PW} - POSTGRES_DB=${POSTGRES_DB} #optional (specify default database instead of $POSTGRES_DB) ports: - "5532:5432" restart: always --.ENV-- #Bruger ikke alt i denne PORT=5000 PG_CONNECTION_STRING = "postgres://postgres:password@localhost:5432/" PGADMIN_CONFIG_ENCHANCED_COOKIE_PROTECTION="False" POSTGRES_USER=yourUser POSTGRES_PW=changeit POSTGRES_DB=postgres PGADMIN_MAIL=your@email.com PGADMIN_PW=changeit
Editor is loading...