Alpine-based image (59MB), source and config bind-mounted via compose.yaml. Host networking for access to local Tor nodes.
14 lines
286 B
YAML
14 lines
286 B
YAML
services:
|
|
s5p:
|
|
build:
|
|
context: .
|
|
dockerfile: Containerfile
|
|
container_name: s5p
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:1080:1080"
|
|
volumes:
|
|
- ./src:/app/src:ro,Z
|
|
- ./config/s5p.yaml:/app/config/s5p.yaml:ro,Z
|
|
network_mode: host
|