This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/tecnativa/docker-socket-proxy](https://github.com/Tecnativa/docker-socket-proxy) | minor | `0.3.0` -> `v0.4.0` | --- ### Release Notes <details> <summary>Tecnativa/docker-socket-proxy (ghcr.io/tecnativa/docker-socket-proxy)</summary> ### [`v0.4.0`](https://github.com/Tecnativa/docker-socket-proxy/releases/tag/v0.4.0) [Compare Source](https://github.com/Tecnativa/docker-socket-proxy/compare/v0.3.0...v0.4.0) #### What's Changed - test: check if connection upgrades work (using exec) by [@​proudier](https://github.com/proudier) in https://github.com/Tecnativa/docker-socket-proxy/pull/139 - \[ADD] v1.51 version to README.md and Modernice CI by [@​josep-tecnativa](https://github.com/josep-tecnativa) in https://github.com/Tecnativa/docker-socket-proxy/pull/152 - Updated the underlying haproxy version from 2.2 to 3.2.4 by [@​Programmer-Admin](https://github.com/Programmer-Admin) in https://github.com/Tecnativa/docker-socket-proxy/pull/156 #### New Contributors - [@​Programmer-Admin](https://github.com/Programmer-Admin) made their first contribution in https://github.com/Tecnativa/docker-socket-proxy/pull/156 **Full Changelog**: https://github.com/Tecnativa/docker-socket-proxy/compare/v0.3.0...v0.4.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4zNS4wIiwidXBkYXRlZEluVmVyIjoiNDEuMzUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW1hZ2UiXX0=--> Reviewed-on: #1326 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
59 lines
1.7 KiB
YAML
59 lines
1.7 KiB
YAML
---
|
|
services:
|
|
tailscale-homepage:
|
|
image: ghcr.io/tailscale/tailscale:v1.86.5
|
|
container_name: tailscale-homepage
|
|
cap_add:
|
|
- net_admin
|
|
- sys_module
|
|
environment:
|
|
- TS_STATE_DIR=/var/lib/tailscale
|
|
- TS_ENABLE_METRICS=true
|
|
- TS_HOSTNAME=home-ps10rp
|
|
- TS_SERVE_CONFIG=/config/serve.json
|
|
network_mode: service:homepage
|
|
restart: always
|
|
volumes:
|
|
- tailscale:/var/lib/tailscale
|
|
- ${PWD}/serve.json:/config/serve.json
|
|
devices:
|
|
- /dev/net/tun:/dev/net/tun
|
|
|
|
dockerproxy:
|
|
image: ghcr.io/tecnativa/docker-socket-proxy:v0.4.0
|
|
container_name: homepage-dockerproxy
|
|
environment:
|
|
- CONTAINERS=1
|
|
- POST=0
|
|
network_mode: service:homepage
|
|
privileged: true
|
|
restart: always
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
|
|
homepage:
|
|
image: ghcr.io/gethomepage/homepage:v1.4.6
|
|
container_name: homepage
|
|
labels:
|
|
traefik.enable: true
|
|
traefik.docker.network: internal
|
|
traefik.http.routers.homepage.entrypoints: web-secure
|
|
traefik.http.routers.homepage.rule: Host(`www.lebens-home.net`)
|
|
traefik.http.routers.homepage.service: homepage
|
|
traefik.http.services.homepage.loadbalancer.server.port: 3000
|
|
environment:
|
|
- HOMEPAGE_ALLOWED_HOSTS=www.lebens-home.net
|
|
networks:
|
|
internal: null
|
|
restart: always
|
|
volumes:
|
|
- ${PWD}/homepage_config:/app/config
|
|
|
|
networks:
|
|
internal:
|
|
name: internal
|
|
external: true
|
|
|
|
volumes:
|
|
tailscale:
|