add compose files for container management

Replace raw podman run with declarative compose.yml per host type.
Master (odin) gets compose.master.yml, workers get compose.worker.yml.
This commit is contained in:
Username
2026-02-17 18:17:12 +01:00
parent 0311abb46a
commit 1236ddbd2d
3 changed files with 33 additions and 11 deletions

15
compose.master.yml Normal file
View File

@@ -0,0 +1,15 @@
version: "3"
services:
ppf:
container_name: ppf
image: localhost/ppf:latest
build: .
network_mode: host
restart: unless-stopped
environment:
PYTHONUNBUFFERED: "1"
volumes:
- .:/app:ro
- ./data:/app/data
- ./config.ini:/app/config.ini:ro
command: python2 -u ppf.py