Skip to content

Instantly share code, notes, and snippets.

@samklr
Created September 7, 2021 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samklr/73f3d95341199c963d01fb2edb02894d to your computer and use it in GitHub Desktop.
Save samklr/73f3d95341199c963d01fb2edb02894d to your computer and use it in GitHub Desktop.
version: '2'
services:
minio:
restart: always
image: docker.io/bitnami/minio:2021
ports:
- '9000:9000'
environment:
- MINIO_ROOT_USER=miniokey
- MINIO_ROOT_PASSWORD=miniosecret
volumes:
- 'minio_data:/data'
networks:
- df-net-local
dremio:
restart: always
image: dremio/dremio-oss:latest
ports:
- "9047:9047" # UI (HTTP)
- "31010:31010" # ODBC/JDBC clients
- "2181:2181" # ZooKeeper
- "45678:45678" # Inter-node communication
networks:
- df-net-local
volumes:
minio_data:
driver: local
networks:
df-net-local:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment