style: Standardize container names across compose files

- 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.
This commit is contained in:
MSWS
2025-03-29 01:30:45 -07:00
parent 5130ba10a1
commit e3731952d8
2 changed files with 4 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
services:
calibre-web-automated:
image: crocodilestick/calibre-web-automated:latest
container_name: calibre-web-automated
container_name: calibre-interface
environment:
- PUID=1000
- PGID=1000
@@ -24,6 +24,7 @@ services:
calibre-web-automated-book-downloader:
image: ghcr.io/calibrain/calibre-web-automated-book-downloader:latest
container_name: calibre-downloader
environment:
FLASK_PORT: 8084
FLASK_DEBUG: false

View File

@@ -1,6 +1,7 @@
services:
cloudflared-public:
image: cloudflare/cloudflared:latest
container_name: cf-tunnel-public
restart: always
command: tunnel --no-autoupdate run
environment:
@@ -11,6 +12,7 @@ services:
- "com.centurylinklabs.watchtower.enable=false"
cloudflared-internal:
image: cloudflare/cloudflared:latest
container_name: cf-tunnel-internal
restart: always
command: tunnel --no-autoupdate run
environment: