-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
65 lines (63 loc) · 1.54 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
version: '3'
services:
molanco-datacollector:
build: ./streamsets
image: molanco-datacollector:3.0.1.0
ports:
- "18630:18630"
volumes:
- ./streamsets/data/sdc:/data:rw
- ./streamsets/data/apache-logs:/data_logs:rw
environment:
ADD_LIBS: "streamsets-datacollector-apache-kafka_0_9-lib,streamsets-datacollector-jython_2_7-lib"
zookeeper:
image: wurstmeister/zookeeper:3.4.6
ports:
- "2181:2181"
kafka:
image: wurstmeister/kafka:0.9.0.1
ports:
- "9092"
depends_on:
- zookeeper
links:
- zookeeper:zk
environment:
KAFKA_ADVERTISED_HOST_NAME: "kafka"
KAFKA_ADVERTISED_PORT: "9092"
KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181"
minecraft-server:
build: ./minecraft
container_name: serverspigot
ports:
- "25565:25565"
environment:
EULA: "TRUE"
TYPE: "SPIGOT"
VERSION: "1.10.2"
SPIGOT_DOWNLOAD_URL: "https://cdn.getbukkit.org/spigot/spigot-1.10.2-R0.1-SNAPSHOT-latest.jar"
MODE: "creative"
OP_PERMISSION_LEVEL: "2"
ENABLE_RCON: "true"
RCON_PASSWORD: "testing"
RCON_PORT: 28016
CLASSPATH: "/kafka/slf4j-api-1.7.22.jar:/kafka/kafka-clients-0.9.0.1.jar"
env_file: .env
tty: true
stdin_open: true
# restart: always
volumes:
- ./minecraft/data:/data
- ./minecraft/kafka:/kafka
rcon:
image: itzg/rcon
ports:
- "4326:4326"
- "4327:4327"
volumes:
- "./minecraft/rcon:/opt/rcon-web-admin/db"
volumes:
data_logs:
data:
rcon:
kafka: