WoL Dockerized is a Docker Container that allows you to start requested Docker Containers. It also stops Containers after a threshold of Inactivity.
Get the latest docker-compose.yaml file:
---
services:
wol-dockerized:
image: ghcr.io/codeshelldev/wol-dockerized:latest
container_name: wol-dockerized
environment:
- PATTERN={HOSTNAME}
- MONITOR_INTERVAL=60
- INACTIVITY_THRESHOLD=600docker compose up -dStart Container with query: jellyfin.mydomain.com:
curl -X POST -H "Content-Type: application/json" -d '{"query": "jellyfin.mydomain.com"}' http://wol-dockerized.mydomain.com---
services:
jellyfin:
image: jelylfin/jellyfin:latest
labels:
- wol.enable=true
- wol.query=jellyfin.mydomain.com
- wol.autostop=true