mirror of
https://github.com/MSWS/Homelab.git
synced 2025-12-05 23:00:24 -08:00
- Add `container_name` properties to `cf-tunnel/compose.yml` for improved container identification and management - Update and add `container_name` properties in `calibre/compose.yml` to enhance clarity and organization [cf-tunnel/compose.yml] - Added `container_name` properties for both services (`cf-tunnel-public` and `cf-tunnel-internal`), likely for easier identification and management of the containers. [calibre/compose.yml] - Updated `container_name` for `calibre-web-automated` to `calibre-interface`, possibly to better reflect its purpose or clarify its role in the system. - Added `container_name` for `calibre-web-automated-book-downloader` as `calibre-downloader`, introducing clearer identification for the container. No major functional changes were introduced, but naming adjustments likely aim to improve readability or organization.
27 lines
699 B
YAML
27 lines
699 B
YAML
services:
|
|
cloudflared-public:
|
|
image: cloudflare/cloudflared:latest
|
|
container_name: cf-tunnel-public
|
|
restart: always
|
|
command: tunnel --no-autoupdate run
|
|
environment:
|
|
TUNNEL_TOKEN: "${PUBLIC_TUNNEL_TOKEN}"
|
|
networks:
|
|
- cloudflared
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=false"
|
|
cloudflared-internal:
|
|
image: cloudflare/cloudflared:latest
|
|
container_name: cf-tunnel-internal
|
|
restart: always
|
|
command: tunnel --no-autoupdate run
|
|
environment:
|
|
TUNNEL_TOKEN: "${PRIVATE_TUNNEL_TOKEN}"
|
|
network_mode: "host"
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=false"
|
|
|
|
networks:
|
|
cloudflared:
|
|
name: cloudflared
|