-
-
Save almirb/3e4dd4c727acc0230c9ec1154a8b408a to your computer and use it in GitHub Desktop.
Dremio (latest) with CORS enabled
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: '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