Skip to content

Instantly share code, notes, and snippets.

@patrikbraborec
Last active January 13, 2022 11:08
Show Gist options
  • Save patrikbraborec/58dd08a915593a8c06e51a3be0fba032 to your computer and use it in GitHub Desktop.
Save patrikbraborec/58dd08a915593a8c06e51a3be0fba032 to your computer and use it in GitHub Desktop.
version: "3.9"
services:
postgres:
container_name: iot-online-shop-postgres
image: postgres:latest
ports:
- "5432:5432"
volumes:
- /var/lib/postgresql/data
env_file:
- docker.env
pgadmin:
links:
- postgres:postgres
container_name: iot-online-shop-pgadmin
image: dpage/pgadmin4
ports:
- "8080:80"
volumes:
- /root/.pgadmin
env_file:
- docker.env
gooddata:
container_name: gooddata
image: gooddata/gooddata-cn-ce:latest
ports:
- "3000:3000"
volumes:
- /data
stdin_open: true
tty: true
environment:
- BUNDLE_TYPE=article_build_tool_for_data_analysis
- LICENSE_AND_PRIVACY_POLICY_ACCEPTED=YES
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment