-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
44 lines (38 loc) · 1020 Bytes
/
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
version: '2'
services:
configuration:
container_name: configuration
image: spiroid/cozy-conf
build: ./images/cozy-conf
couchdata:
container_name: couchdata
image: spiroid/cozy-couchdb-data
build: ./images/cozy-couchdb-data
indexerdata:
container_name: indexerdata
image: spiroid/cozy-indexer-data
build: ./images/cozy-indexer-data
couchdb:
image: spiroid/cozy-couchdb
build: ./images/cozy-couchdb
restart: always
volumes_from:
- couchdata
- configuration
controller:
image: spiroid/cozy-controller
build: ./images/cozy-controller
restart: always
links:
- couchdb
volumes_from:
- configuration
- indexerdata
nginx:
image: spiroid/cozy-nginx
build: ./images/cozy-nginx
restart: always
links:
- controller
ports:
- "443:443"