Skip to content

Instantly share code, notes, and snippets.

@almirb
Forked from jorgealarcon/docker-compose.yaml
Created July 15, 2022 20:01
Show Gist options
  • Save almirb/3e4dd4c727acc0230c9ec1154a8b408a to your computer and use it in GitHub Desktop.
Save almirb/3e4dd4c727acc0230c9ec1154a8b408a to your computer and use it in GitHub Desktop.
Dremio (latest) with CORS enabled
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