Created
October 4, 2019 14:39
-
-
Save jorgealarcon/a2dcf4a804b1d242c3fcfefdd89442e4 to your computer and use it in GitHub Desktop.
Dremio (latest) with CORS enabled
This file contains 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: '2' | |
services: | |
dremio: | |
image: dremio/dremio-oss | |
container_name: dremio | |
#volumes: | |
#- dremio-local:/opt/dremio/data | |
ports: | |
- 9047:9047 | |
- 31010:31010 | |
- 45678:45678 | |
restart: always | |
nginx: | |
image: shakyshane/nginx-cors-plus | |
container_name: nginx | |
ports: | |
- 8090:80 | |
environment: | |
- TARGET=http://dremio:9047 | |
depends_on: | |
- dremio | |
restart: always | |
volumes: | |
dremio-local: | |
driver: local |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instructions