Skip to content

Instantly share code, notes, and snippets.

@alpancs
Last active February 8, 2019 03:22
Show Gist options
  • Save alpancs/66902878e434cdea22a50e6f70ead839 to your computer and use it in GitHub Desktop.
Save alpancs/66902878e434cdea22a50e6f70ead839 to your computer and use it in GitHub Desktop.
all in one services
version: "3"
services:
beanstalkd:
container_name: beanstalkd
image: schickling/beanstalkd
network_mode: host
restart: always
cassandra:
container_name: cassandra
image: cassandra:3.11.3
network_mode: host
restart: always
tmpfs: /var/lib/cassandra
kafka:
container_name: kafka
depends_on:
- zookeeper
image: bitnami/kafka:2.0.0
network_mode: host
restart: always
environment:
- ALLOW_PLAINTEXT_LISTENER=yes
memcached:
container_name: memcached
image: memcached:1.5.9-alpine
network_mode: host
restart: always
mongo:
container_name: mongo
image: mongo:4.0
network_mode: host
restart: always
tmpfs: /data/db
mysql:
container_name: mysql
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=root
network_mode: host
restart: always
tmpfs: /var/lib/mysql
rabbitmq:
container_name: rabbitmq
image: rabbitmq:3.7.7-alpine
network_mode: host
restart: always
redis:
container_name: redis
image: redis:4.0-alpine3.8
network_mode: host
restart: always
zookeeper:
container_name: zookeeper
image: bitnami/zookeeper:3.4.12
network_mode: host
restart: always
environment:
- ALLOW_ANONYMOUS_LOGIN=yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment