forked from linnovate/dfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-b.yml
111 lines (98 loc) · 3.08 KB
/
docker-compose-b.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
version: "3"
services:
##################################################################
############################# Canton #############################
##################################################################
cantonB:
image: digitalasset/canton-community:latest
tty: true
volumes:
- ./canton:/canton/app
- ./daml:/canton/daml
environment:
- DOMAIN_URL=${CANTON_DOMAIN_URL}
- LEDGER_PORT=${LEDGER_PORT_B}
ports:
- ${LEDGER_PORT_B}:${LEDGER_PORT_B}
command: --config /canton/app/canton_2.conf --bootstrap /canton/app/init_2.canton
##################################################################
########################### Navigator ############################
##################################################################
navigatorB:
image: digitalasset/daml-sdk:1.18.0
working_dir: /data
ports:
- ${NAVIGATOR_PORT_B}:${NAVIGATOR_PORT_B}
volumes:
- ./daml:/data
command: daml ledger navigator --host cantonB --port ${LEDGER_PORT_B} --port ${NAVIGATOR_PORT_B}
depends_on:
- cantonB
links:
- cantonB
##################################################################
############################ JsonApi #############################
##################################################################
jsonApiB:
image: digitalasset/daml-sdk:1.18.0
working_dir: /data
ports:
- ${JSON_API_PORT_B}:${JSON_API_PORT_B}
volumes:
- ./daml:/data
command: daml json-api --ledger-host cantonB --ledger-port ${LEDGER_PORT_B} --http-port ${JSON_API_PORT_B} --address 0.0.0.0 --allow-insecure-tokens
depends_on:
- cantonB
links:
- cantonB
##################################################################
############################# React ##############################
##################################################################
reactB:
image: node:alpine
working_dir: /usr/src/app
environment:
- JSON_API_URL=${JSON_API_URL_A}
ports:
- ${REACT_PORT_B}:3000
volumes:
- ./ui:/usr/src/app
command: sh -c "yarn install && yarn start"
links:
- jsonApiB
##################################################################
########################### Wordpress ############################
##################################################################
nginxB:
image: nginx:alpine
volumes:
- ./wordpress:/var/www/html
- ./nginx_b.conf:/etc/nginx/conf.d/default.conf
ports:
- ${NGINX_PORT_B}:80
depends_on:
- wordpressB
- jsonApiB
links:
- wordpressB
- jsonApiB
wordpressB:
image: wordpress:php7.4-fpm-alpine
environment:
- WORDPRESS_DB_HOST=mysqlB
- WORDPRESS_DB_NAME=wordpress
- WORDPRESS_DB_USER=root
- WORDPRESS_DB_PASSWORD=password
volumes:
- ./wordpress:/var/www/html
depends_on:
- mysqlB
links:
- mysqlB
mysqlB:
image: mariadb
environment:
- MYSQL_ROOT_PASSWORD=password
- MYSQL_DATABASE=wordpress
volumes:
- ./data/mysqlB:/var/lib/mysql