-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
38 lines (33 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
35
36
37
38
#
#Copyright Odin Solutions S.L. All Rights Reserved.
#
#SPDX-License-Identifier: Apache-2.0
#
version: '3.1'
services:
pepproxy:
image: iotcrawler/pep-proxy
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
ports:
- "1028:1027"
restart: unless-stopped
environment:
#Broker protocol. Admitted values: "http","https"
- target_protocol=http
#Broker host.
- target_host=<specify Broker Public IP address>
- target_port=3001
#Validate Capability token using blockchain: Admitted values: "0: No use; 1:Use"
- blockchain_usevalidation=1
#BlockChain protocol. Admitted values: "http","https"
- blockchain_protocol=http
#BlockChain host.
- blockchain_host=<specify BlockChain Public IP address>
- blockchain_port=8000
# PEP proxy endpoint: protocol+ip+port
# HOST NO admitted: 0.0.0.0, localhost, 127.0.0.1
- PEP_ENDPOINT=<specify PEP-Proxy Public address ex: https://<PEP-IP>:<PEP-PORT>>