feat: add Containerfile and compose.yaml for podman

Alpine-based image (59MB), source and config bind-mounted via
compose.yaml. Host networking for access to local Tor nodes.
This commit is contained in:
user
2026-02-15 03:42:59 +01:00
parent 57d2d87424
commit 61c580a555
3 changed files with 42 additions and 1 deletions

13
compose.yaml Normal file
View File

@@ -0,0 +1,13 @@
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