-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
34 lines (32 loc) · 1.06 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
#
#Copyright Odin Solutions S.L. All Rights Reserved.
#
#SPDX-License-Identifier: Apache-2.0
#
version: "3.5"
services:
securityfacade:
image: iotcrawler/securityfacade
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
expose:
- "8081"
ports:
- "8081:8080"
- "8443:8443"
restart: unless-stopped
volumes:
- ./configuration_files/certs/servidor.iotcrawler.org_cert.pem:/usr/local/tomcat/conf/server_cert.pem
- ./configuration_files/certs/servidor.iotcrawler.org_privkey.pem:/usr/local/tomcat/conf/server_privkey.pem
- ./configuration_files/server.xml:/usr/local/tomcat/conf/server.xml
- ./configuration_files:/usr/local/tomcat/conf/configuration_files
environment:
- CAPMANAGER_CONFIG_FOLDER=/usr/local/tomcat/conf/configuration_files
#disable_certs : Disable certs ssl validation. Optional Parameter. Use only in test environment. Admittable values:
# 0-Use certs ssl validation
# 1-Disable
# Default value : 0
- disable_certs=0