Last active
January 13, 2022 11:08
-
-
Save patrikbraborec/58dd08a915593a8c06e51a3be0fba032 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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