forked from CAAPIM/gateway-developer-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
29 lines (28 loc) · 1.09 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
# Copyright (c) 2018 CA. All rights reserved.
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE file for details.
version: '3.4'
services:
gateway-dev:
hostname: gateway-dev
image: caapim/gateway:9.3.00
ports:
- "8080:8080"
- "8443:8443"
- "9443:9443"
- "8000:8000"
volumes:
- /opt/SecureSpan/Gateway/node/default/etc/bootstrap/services/restman
- ./lib/my-bundle-1.0.00.bundle:/opt/SecureSpan/Gateway/node/default/etc/bootstrap/bundle/1-my-bundle-1.0.00.req.bundle
- ./build/gateway/gateway-developer-example.bundle:/opt/SecureSpan/Gateway/node/default/etc/bootstrap/bundle/2-gateway-developer-example.req.bundle
secrets:
- source: license
target: /opt/SecureSpan/Gateway/node/default/etc/bootstrap/license/license.xml
environment:
ACCEPT_LICENSE: "true"
SSG_ADMIN_USERNAME: "admin"
SSG_ADMIN_PASSWORD: "password"
EXTRA_JAVA_ARGS: "-Xdebug -Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n"
secrets:
license:
file: ./docker/license.xml