53 lines
1.7 KiB
YAML
53 lines
1.7 KiB
YAML
|
|
services:
|
||
|
|
ws_aster:
|
||
|
|
container_name: ws_aster
|
||
|
|
restart: "unless-stopped"
|
||
|
|
build:
|
||
|
|
context: ./
|
||
|
|
dockerfile: ./ws_aster/Dockerfile
|
||
|
|
volumes:
|
||
|
|
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||
|
|
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||
|
|
network_mode: "host"
|
||
|
|
ws_extended_fund_rate:
|
||
|
|
container_name: ws_extended_fund_rate
|
||
|
|
restart: "unless-stopped"
|
||
|
|
build:
|
||
|
|
context: ./
|
||
|
|
dockerfile: ./ws_extended_fund_rate/Dockerfile
|
||
|
|
volumes:
|
||
|
|
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||
|
|
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||
|
|
network_mode: "host"
|
||
|
|
ws_extended_orderbook:
|
||
|
|
container_name: ws_extended_orderbook
|
||
|
|
restart: "unless-stopped"
|
||
|
|
build:
|
||
|
|
context: ./
|
||
|
|
dockerfile: ./ws_extended_orderbook/Dockerfile
|
||
|
|
volumes:
|
||
|
|
- /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||
|
|
- /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||
|
|
network_mode: "host"
|
||
|
|
|
||
|
|
|
||
|
|
# ws_user:
|
||
|
|
# container_name: ws_user
|
||
|
|
# restart: "unless-stopped"
|
||
|
|
# build:
|
||
|
|
# context: ./
|
||
|
|
# dockerfile: ./ws_user/Dockerfile
|
||
|
|
# volumes:
|
||
|
|
# - /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||
|
|
# - /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||
|
|
# network_mode: "host"
|
||
|
|
# ng:
|
||
|
|
# container_name: ng
|
||
|
|
# restart: "unless-stopped"
|
||
|
|
# build:
|
||
|
|
# context: ./
|
||
|
|
# dockerfile: ./ng/Dockerfile
|
||
|
|
# volumes:
|
||
|
|
# - /home/ubuntu/data:/home/ubuntu/data:rw # Read-write access to data
|
||
|
|
# - /home/ubuntu/logs:/home/ubuntu/logs:rw # Read-write access to data
|
||
|
|
# network_mode: "host"
|