20 lines
540 B
YAML
20 lines
540 B
YAML
version: "3.8"
|
|
services:
|
|
sing-box-hk:
|
|
image: ghcr.io/sagernet/sing-box
|
|
container_name: sing-box-hk
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./config-hk.json:/etc/sing-box/config.json
|
|
network_mode: "host"
|
|
command: -D /var/lib/sing-box -C /etc/sing-box/ run
|
|
|
|
sing-box-us:
|
|
image: ghcr.io/sagernet/sing-box
|
|
container_name: sing-box-us
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./config-us.json:/etc/sing-box/config.json
|
|
network_mode: "host"
|
|
command: -D /var/lib/sing-box -C /etc/sing-box/ run
|