inv_sig_helper/docker-compose.yaml
techmetx11 215d32c76e
Some checks failed
Build and test inv_sig_helper / build (push) Has been cancelled
Build and Push Docker Image / build-and-push (push) Has been cancelled
Use Docker's builtin tini process, to run as PID 1 and handle SIGTERMs/SIGINTs
Fixes #20
2024-08-17 18:04:20 +01:00

20 lines
433 B
YAML

version: "3"
services:
inv_sig_helper:
build:
context: .
dockerfile: Dockerfile
# image: quay.io/invidious/inv-sig-helper:latest
init: true
command: ["--tcp", "127.0.0.1:12999"]
ports:
- 127.0.0.1:12999:12999
environment:
- RUST_LOG=info
restart: unless-stopped
cap_drop:
- ALL
read_only: true
user: 10001:10001
security_opt:
- no-new-privileges:true