DockerComposeCollection

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit b1892448387c3b5fda1cdb2ea7ff8472bb07ea50
parent 6ddd77838ff6a0c9d4b818eb523b7f58b66597e9
Author: minerva-jupiter <ryouturn@gmail.com>
Date:   Sat, 28 Dec 2024 17:35:39 +0900

add wol

Diffstat:
Awol/docker-compose.yml | 18++++++++++++++++++
1 file changed, 18 insertions(+), 0 deletions(-)

diff --git a/wol/docker-compose.yml b/wol/docker-compose.yml @@ -0,0 +1,17 @@ +services: + gptwol: + container_name: gptwol + image: misterbabou/gptwol:latest + network_mode: host + restart: unless-stopped + environment: + - PORT=8080 #Free Port on Your host; default is 5000 + - TZ=Europe/Paris #Set your timezone for Cron; default is UTC + #- SCRIPT_NAME=/my-app #Uncomment this line to run the app under a prefix + #- DISABLE_ADD_DEL=1 #Uncomment this line to disable Add or delete Computers; default is to allow + #- DISABLE_REFRESH=1 #Uncomment this line to prevent your browser to refresh Computer status; default is to allow + #- REFRESH_PING=15 # Uncomment this line to change ping status check, can be 15 or 60 (seconds); default value is 30 seconds + #- PING_TIMEOUT=200 #Uncomment this line to change the time to wait for a ping answer in (in ms); default value is 300 milliseconds + volumes: + - ./computers.txt:/app/computers.txt + - ./appdata/cron:/etc/cron.d+ \ No newline at end of file