This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Define the cookie jar and temp file for HTML content | |
COOKIE_JAR="cookie.txt" | |
HTML_FILE="response.html" | |
# URL details | |
LOGIN_URL="http://192.168.0.1/goform/logon" | |
RESTART_PAGE="http://192.168.0.1/ad_restart_gateway.html" | |
RESTART_ACTION="http://192.168.0.1/goform/ad_restart_gateway" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.9" | |
name: media_stack | |
services: | |
transmission: | |
container_name: transmission | |
image: linuxserver/transmission:latest | |
networks: | |
- media-server-dejan | |
environment: | |
- PUID=1000 |