forked from linnovate/dfa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
112 lines (99 loc) · 3.13 KB
/
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
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
version: "3"
services:
##################################################################
############################# Canton #############################
##################################################################
cantonA:
image: digitalasset/canton-community:latest
tty: true
volumes:
- ./canton:/canton/app
- ./daml:/canton/daml
environment:
- DOMAIN_PORT=${CANTON_DOMAIN_PORT}
- LEDGER_PORT=${LEDGER_PORT_A}
ports:
- ${CANTON_DOMAIN_PORT}:${CANTON_DOMAIN_PORT}
- ${LEDGER_PORT_A}:${LEDGER_PORT_A}
command: --config /canton/app/canton.conf --bootstrap /canton/app/init.canton
##################################################################
########################### Navigator ############################
##################################################################
navigatorA:
image: digitalasset/daml-sdk:1.18.0
working_dir: /data
ports:
- ${NAVIGATOR_PORT_A}:${NAVIGATOR_PORT_A}
volumes:
- ./daml:/data
command: daml ledger navigator --host cantonA --port ${LEDGER_PORT_A} --port ${NAVIGATOR_PORT_A}
depends_on:
- cantonA
links:
- cantonA
##################################################################
############################ JsonApi #############################
##################################################################
jsonApiA:
image: digitalasset/daml-sdk:1.18.0
working_dir: /data
ports:
- ${JSON_API_PORT_A}:${JSON_API_PORT_A}
volumes:
- ./daml:/data
command: daml json-api --ledger-host cantonA --ledger-port ${LEDGER_PORT_A} --http-port ${JSON_API_PORT_A} --address 0.0.0.0 --allow-insecure-tokens
depends_on:
- cantonA
links:
- cantonA
##################################################################
############################# React ##############################
##################################################################
reactA:
image: node:alpine
working_dir: /usr/src/app
environment:
- JSON_API_URL=${JSON_API_URL_A}
ports:
- ${REACT_PORT_A}:3000
volumes:
- ./ui:/usr/src/app
command: sh -c "yarn install && yarn start"
links:
- jsonApiA
##################################################################
########################### Wordpress ############################
##################################################################
nginxA:
image: nginx:alpine
volumes:
- ./wordpress:/var/www/html
- ./nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- ${NGINX_PORT_A}:80
depends_on:
- wordpressA
- jsonApiA
links:
- wordpressA
- jsonApiA
wordpressA:
image: wordpress:php7.4-fpm-alpine
environment:
- WORDPRESS_DB_HOST=mysqlA
- WORDPRESS_DB_NAME=wordpress
- WORDPRESS_DB_USER=root
- WORDPRESS_DB_PASSWORD=password
volumes:
- ./wordpress:/var/www/html
depends_on:
- mysqlA
links:
- mysqlA
mysqlA:
image: mariadb
environment:
- MYSQL_ROOT_PASSWORD=password
- MYSQL_DATABASE=wordpress
volumes:
- ./data/mysqlA:/var/lib/mysql