This commit is contained in:
2026-04-01 17:37:19 +00:00
parent 8d7d99d749
commit 259ea93479
21 changed files with 2900 additions and 436 deletions

51
docker-compose.yml Normal file
View File

@@ -0,0 +1,51 @@
services:
ws_binance:
container_name: ws_binance
restart: "unless-stopped"
build:
context: ./
dockerfile: ./ws_binance/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_clob:
container_name: ws_clob
restart: "unless-stopped"
build:
context: ./
dockerfile: ./ws_clob/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_rtds:
container_name: ws_rtds
restart: "unless-stopped"
build:
context: ./
dockerfile: ./ws_rtds/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"