mirror of
https://github.com/MSWS/Homelab.git
synced 2025-12-06 07:04:26 -08:00
instance ``` - Add new track "5 Seconds of Summer - Social Casualty" to Daily playlist. - Disable personal watchtower service by commenting out its configuration in `watchtower/compose.yml`. - Replace `inv_sig_helper` service with `companion` service in `invidious/compose.yml`, introducing new configurations, networks, and volumes to support the change. - Update `invidious` service configuration for integration with the `companion` service, including adding new environment variables and modifying network and volume references. - Enhance security settings in `invidious/compose.yml` by updating `security_opt`, `cap_drop`, and maintaining `read_only` configuration for the `companion` service. ```
19 lines
516 B
YAML
19 lines
516 B
YAML
services:
|
|
watchtower:
|
|
image: containrrr/watchtower
|
|
restart: always
|
|
container_name: watchtower
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
environment:
|
|
WATCHTOWER_SCHEDULE: "0 0 18 * * *"
|
|
# watchtower-kboaz:
|
|
# image: containrrr/watchtower
|
|
# restart: always
|
|
# container_name: watchtower-kboaz
|
|
# volumes:
|
|
# - /var/run/docker.sock:/var/run/docker.sock
|
|
# environment:
|
|
# WATCHTOWER_SCHEDULE: "0 * * * * *"
|
|
# command: "kboaz-site-1"
|