forked from phoebus-84/zenflows-inbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-fed.yml
61 lines (61 loc) · 1.23 KB
/
docker-compose-fed.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
version: "3"
services:
inbox0:
build:
dockerfile: Dockerfile
context: .
image: zenflows-inbox
working_dir: /app
ports:
- "5000:80"
environment:
TT_HOST: "db0:3500"
TT_USER: "inbox"
TT_PASS: "inbox"
ZENFLOWS_URL: "https://zenflows-test.interfacer.dyne.org"
BASE_URL: "http://inbox0"
ZENFLOWS_SK:
ZENFLOWS_USER:
depends_on:
- db0
db0:
build:
dockerfile: Dockerfile.tarantool
context: .
image: zenflows-inbox-db
restart: always
ports:
- 3500:3500
inbox1:
image: zenflows-inbox
working_dir: /app
ports:
- "5001:80"
environment:
TT_HOST: "db1:3500"
TT_USER: "inbox"
TT_PASS: "inbox"
ZENFLOWS_URL: "https://zenflows-test.interfacer.dyne.org"
BASE_URL: "http://inbox1"
ZENFLOWS_SK:
ZENFLOWS_USER:
depends_on:
- db1
- inbox0
db1:
image: zenflows-inbox-db
restart: always
ports:
- 3501:3500
depends_on:
- db0
client:
build:
dockerfile: Dockerfile.examples
context: .
command: /bin/sh
restart: always
stdin_open: true # docker run -i
tty: true # docker run -t
logging:
driver: none