Skip to content

Instantly share code, notes, and snippets.

View gschmutz's full-sized avatar

Guido Schmutz gschmutz

View GitHub Profile
@gschmutz
gschmutz / s3-docker-compose.yml
Created August 21, 2017 07:40
s3 service for docker-compose
version: "3"
services:
s3:
image: scality/s3server
ports:
- "8002:8000"
volumes:
- ./data:/usr/src/app/localData
@gschmutz
gschmutz / mesos-docker-compose.yml
Created August 21, 2017 07:26
Docker Compose with Mesos, Marathon, Chronos & Traefik
version: "3"
networks:
app_net:
driver: bridge
ipam:
driver: default
config:
-
subnet: 172.16.121.0/24
@gschmutz
gschmutz / docker-compose.yml
Last active September 18, 2017 18:30
Docker-Compose for DataStax Enterprise
version: '2'
# We're going to rely on an externally created network for our services to get around the
# problem with docker compose using underscores in network and container names (and thus causing
# problems with invalid hostnames). See the comment on 34e78d05af2a287030598e545341ada36e9d24c
# for more details. You can create this network by running: 'docker network create graph'
networks:
graph:
external: true