-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
60 lines (56 loc) · 1.66 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
services:
kafka:
image: landoop/fast-data-dev:latest
environment:
ADV_HOST: localhost # Change to 192.168.99.100 if using Docker Toolbox
RUNTESTS: 0 # Disable Running tests so the cluster starts faster
ports:
- 2181:2181 # Zookeeper
- 3030:3030 # Landoop UI
- 8081-8083:8081-8083 # REST Proxy, Schema Registry, Kafka Connect ports
- 9581-9585:9581-9585 # JMX Ports
- 9092:9092 # Kafka Broker
postgres:
image: postgres:9.5-alpine
environment:
POSTGRES_USER: postgres # define credentials
POSTGRES_PASSWORD: postgres # define credentials
POSTGRES_DB: postgres # define database
ports:
- 5432:5432 # Postgres port
ftpd-server:
container_name: ftpd-server
image: stilliard/pure-ftpd:hardened
ports:
- "21:21"
- "20:20"
- "30000-30009:30000-30009"
environment:
PUBLICHOST: "localhost"
FTP_USER_NAME: "chenh"
FTP_USER_PASS: "test"
FTP_USER_HOME: "/home/test"
restart: on-failure
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- "5775:5775/udp"
- "6831:6831/udp"
- "6832:6832/udp"
- "5778:5778"
- "16686:16686"
- "14268:14268"
- "9411:9411"
environment:
COLLECTOR_ZIPKIN_HOST_PORT: 9411
influxdb:
image: influxdb:latest
ports:
- "8086:8086"
environment:
INFLUXDB_DB: nanjin
INFLUXDB_ORG: nanjin
INFLUXDB_USER: chenh
INFLUXDB_USER_PASSWORD: chenhchenh
INFLUXDB_ADMIN_USER: admin
INFLUXDB_ADMIN_PASSWORD: admin