-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
41 lines (39 loc) · 1.1 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
version: "2"
services:
auth0-pizza42:
build: .
image: auth0-pizza42
ports:
- 3000:3000
# MySQL for API Gateway
mysql:
image: mysql:5.7
volumes:
- ./mysqlconf:/etc/mysql/conf.d
- ./mysqldatadir:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=7layer
command:
- "--character-set-server=utf8"
- "--innodb_log_buffer_size=32M"
- "--innodb_log_file_size=80M"
- "--max_allowed_packet=8M"
#Layer 7
ssg:
image: caapim/gateway:9.4.00
ports:
- "0.0.0.0:8080:8080"
- "0.0.0.0:8443:8443"
- "0.0.0.0:9443:9443"
volumes:
- /opt/SecureSpan/Gateway/node/default/etc/bootstrap/services/restman
- ./license.xml:/opt/SecureSpan/Gateway/node/default/etc/bootstrap/license/license.xml
environment:
ACCEPT_LICENSE: "true"
SSG_ADMIN_USERNAME: "admin"
SSG_ADMIN_PASSWORD: "7layer"
SSG_DATABASE_JDBC_URL: "jdbc:mysql://mysql:3306/ssg"
SSG_DATABASE_USER: "root"
SSG_DATABASE_PASSWORD: "7layer"
SSG_CLUSTER_HOST: "ssg9.docker.l7tech.com"
SSG_CLUSTER_PASSWORD: "7layer"