-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (46 loc) · 985 Bytes
/
docker-compose.yml
File metadata and controls
51 lines (46 loc) · 985 Bytes
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
services:
steatite:
image: benel/steatite
container_name: steatite
volumes:
- ./data:/var/www/html/data
networks:
- steatite_net
aaaforrest:
image: benel/aaaforrest
container_name: aaaforrest
ports:
- 1337:1337
volumes:
- ./conf/aaaforrest.yml:/AAAforREST/conf/config.yml:ro
working_dir: /AAAforREST
depends_on:
- steatite
- couchdb
networks:
- steatite_net
couchdb:
image: couchdb:3
container_name: couchdb
environment:
- COUCHDB_USER=admin
- COUCHDB_PASSWORD=admin
ports:
- 5984:5984
networks:
- steatite_net
volumes:
- ./couchdb_data:/opt/couchdb/data
haproxy:
image: haproxy:2.8
container_name: haproxy
depends_on:
- aaaforrest
ports:
- 8888:80
volumes:
- ./haproxy/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro
networks:
- steatite_net
networks:
steatite_net: {}