-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
33 lines (31 loc) · 789 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
33 lines (31 loc) · 789 Bytes
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
version: '3.9'
services:
gateway:
image: localhost:5000/tonstorage-gateway:latest
build:
context: .
dockerfile: docker/Dockerfile
args:
TON_REPO: https://github.com/ton-blockchain/ton
TON_BRANCH: master
network_mode: host
environment:
TON_STORAGE_ADNL_PORT:
TON_STORAGE_CONTROL_PORT:
TON_STORAGE_VERBOSITY_LEVEL:
TON_PUBLIC_IP:
TON_STORAGE_GLOBAL_CONFIG: /run/secrets/global-config
TON_STORAGE_DATABASE_NAME:
TON_STORAGE_GATEWAY_PORT:
TON_STORAGE_GATEWAY_DOMAIN:
secrets:
- global-config
volumes:
- ./exchange:/exchange
- ton-storage-data:/data
restart: always
volumes:
ton-storage-data:
secrets:
global-config:
file: ${TON_STORAGE_GLOBAL_CONFIG:?}