-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdocker-cloud-prod.yml
115 lines (115 loc) · 2.62 KB
/
docker-cloud-prod.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
authorizedkeys:
autodestroy: always
deployment_strategy: every_node
environment:
- AUTHORIZED_KEYS=ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7oJ/blBKJOHbhBbOLve6xWyzggSR/F680yTu0L1Mwp/KM1kJZTaMcsNH2GzPdHfwcliuM5xgEI45d5nRIeQJhusw+95SEdqEQdM3SIiZMyJLqRBQ3w37ewOy3VxvA5ife5jvCNdTMJcP+pxAKiNz5X7bsrhDUAvBxtvuoSFEb46DO+GQ8x1b+FaiK6PrMpFUkCDf84CjUB+zZXUnGSmPyqqd5y1Qf1a6RizmOR3oCBWRaT7Si5mfgJi8q0SmRLPCjy/+njv0PLnMjI2DSgfPvLqJR8OjxqXBU9SP6sJJ1ldDrUaA9qVfEdbDOXx/tUd38HDfbwqtrxXW4+P7mj+St
image: 'dockercloud/authorizedkeys'
volumes:
- '/root:/user'
tags:
- production
bottledwater:
autoredeploy: true
environment:
- DB_NAME=spacon
hostname: bottledwater
image: 'boundlessgeo/bottledwater-json:master'
links:
- kafka
- postgres
tags:
- production
geoserver:
environment:
- 'JAVA_OPTS=-Xmx1536M -XX:MaxPermSize=756M'
- VIRTUAL_HOST=geoserver
image: 'kartoza/geoserver:2.8.0'
links:
- nginx
- postgis
ports:
- '8080:8080'
tags:
- production
kafka:
environment:
- KAFKA_ADVERTISED_HOST_NAME=
- KAFKA_AUTO_CREATE_TOPICS_ENABLE=true
- KAFKA_LOG_CLEANUP_POLICY=compact
hostname: kafka
image: 'confluent/kafka:0.10.0.0-cp1'
links:
- zookeeper
ports:
- '9092:9092'
tags:
- production
mosquitto:
image: marcusthebrown/mosquitto
hostname: mosquitto
links:
- spatialconnect-server
ports:
- '1883:1883'
- '8883:8883'
- '9883:9883'
tags:
- production
nginx:
image: 'jwilder/nginx-proxy:0.4.0'
ports:
- '80:80'
volumes:
- '/var/run/docker.sock:/tmp/docker.sock:ro'
tags:
- production
postgis:
environment:
- POSTGRES_USER=spacon
image: 'mdillon/postgis:9.5'
tags:
- production
postgres:
hostname: postgres
image: 'confluent/postgres-bw:0.1'
ports:
- '5432:5432'
tags:
- production
spatialconnect-connectors:
autoredeploy: true
environment:
- 'GEOSERVER_URL=http://efc.boundlessgeo.com:8080/geoserver/'
- 'KAFKA_SERVERS=kafka:9092'
- ROOT_LOG_LEVEL=INFO
- TOPICS_LIST=form_data
image: 'boundlessgeo/spatialconnect-connectors:master'
links:
- geoserver
- kafka
tags:
- production
spatialconnect-server:
autoredeploy: true
command: npm start
environment:
- NODE_ENV=production
- PGDATABASE=postgres
- PGHOST=postgres
- PGUSER=postgres
- VIRTUAL_HOST=efc.boundlessgeo.com
image: 'boundlessgeo/spatialconnect-server:master'
links:
- nginx
- postgres
ports:
- '8085:8085'
tags:
- production
zookeeper:
hostname: zookeeper
image: 'confluent/zookeeper:3.4.6-cp1'
ports:
- '2181:2181'
tags:
- production