Skip to content

Commit

Permalink
feat: ✨ allow setting container_name
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Nemchik <eric@nemchik.com>
  • Loading branch information
nemchik committed Jun 6, 2024
1 parent 1de873c commit d6c67c3
Show file tree
Hide file tree
Showing 340 changed files with 340 additions and 172 deletions.
1 change: 1 addition & 0 deletions compose/.apps/adguard/adguard.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Network-wide ads & trackers blocking DNS server"
com.dockstarter.appinfo.nicename: "Adguard"
com.dockstarter.appvars.adguard_container_name: "adguard"
com.dockstarter.appvars.adguard_enabled: "false"
com.dockstarter.appvars.adguard_environment_serverip: "0.0.0.0"
com.dockstarter.appvars.adguard_network_mode: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/adguard/adguard.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
adguard:
container_name: adguard
container_name: ${ADGUARD_CONTAINER_NAME}
environment:
- TZ=${TZ}
restart: ${ADGUARD_RESTART}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/adminer/adminer.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "A full-featured database management tool"
com.dockstarter.appinfo.nicename: "adminer"
com.dockstarter.appvars.adminer_container_name: "adminer"
com.dockstarter.appvars.adminer_enabled: "false"
com.dockstarter.appvars.adminer_environment_design: ""
com.dockstarter.appvars.adminer_environment_plugins: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/adminer/adminer.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
adminer:
container_name: adminer
container_name: ${ADMINER_CONTAINER_NAME}
environment:
- ADMINER_DESIGN=${ADMINER_ENVIRONMENT_DESIGN}
- ADMINER_PLUGINS=${ADMINER_ENVIRONMENT_PLUGINS}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/airdcpp/airdcpp.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) No replacement"
com.dockstarter.appinfo.nicename: "AirdcPP"
com.dockstarter.appvars.airdcpp_container_name: "airdcpp"
com.dockstarter.appvars.airdcpp_enabled: "false"
com.dockstarter.appvars.airdcpp_network_mode: ""
com.dockstarter.appvars.airdcpp_port_21248: "21248"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/airdcpp/airdcpp.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
airdcpp:
container_name: airdcpp
container_name: ${AIRDCPP_CONTAINER_NAME}
environment:
- HTTP_PORT=${AIRDCPP_PORT_5600}
- HTTPS_PORT=${AIRDCPP_PORT_5601}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/airsonic/airsonic.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) Use AirsonicAdvanced"
com.dockstarter.appinfo.nicename: "Airsonic"
com.dockstarter.appvars.airsonic_container_name: "airsonic"
com.dockstarter.appvars.airsonic_enabled: "false"
com.dockstarter.appvars.airsonic_environment_context_path: "/airsonic"
com.dockstarter.appvars.airsonic_environment_java_opts: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/airsonic/airsonic.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
airsonic:
container_name: airsonic
container_name: ${AIRSONIC_CONTAINER_NAME}
environment:
- CONTEXT_PATH=${AIRSONIC_ENVIRONMENT_CONTEXT_PATH}
- JAVA_OPTS=${AIRSONIC_ENVIRONMENT_JAVA_OPTS}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/airsonicadvanced/airsonicadvanced.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Web-based media streamer providing ubiquitous access to your music"
com.dockstarter.appinfo.nicename: "AirsonicAdvanced"
com.dockstarter.appvars.airsonicadvanced_container_name: "airsonicadvanced"
com.dockstarter.appvars.airsonicadvanced_enabled: "false"
com.dockstarter.appvars.airsonicadvanced_environment_context_path: "/airsonic"
com.dockstarter.appvars.airsonicadvanced_environment_java_opts: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/airsonicadvanced/airsonicadvanced.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
airsonicadvanced:
container_name: airsonicadvanced
container_name: ${AIRSONICADVANCED_CONTAINER_NAME}
environment:
- CONTEXT_PATH=${AIRSONICADVANCED_ENVIRONMENT_CONTEXT_PATH}
- JAVA_OPTS=${AIRSONICADVANCED_ENVIRONMENT_JAVA_OPTS}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/amd/amd.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Lidarr companion script to automatically download music for Lidarr"
com.dockstarter.appinfo.nicename: "AMD"
com.dockstarter.appvars.amd_container_name: "amd"
com.dockstarter.appvars.amd_enabled: "false"
com.dockstarter.appvars.amd_environment_arl_token: ""
com.dockstarter.appvars.amd_environment_autostart: "true"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/amd/amd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
amd:
container_name: amd
container_name: ${AMD_CONTAINER_NAME}
environment:
- ARL_TOKEN=${AMD_ENVIRONMENT_ARL_TOKEN}
- AUTOSTART=${AMD_ENVIRONMENT_AUTOSTART}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/apcupsd/apcupsd.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Dockerized Python script that will send data from apcupsd to influxdb."
com.dockstarter.appinfo.nicename: "apcupsd"
com.dockstarter.appvars.apcupsd_container_name: "apcupsd"
com.dockstarter.appvars.apcupsd_enabled: "false"
com.dockstarter.appvars.apcupsd_environment_debug: "false"
com.dockstarter.appvars.apcupsd_environment_host: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/apcupsd/apcupsd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
apcupsd:
container_name: apcupsd
container_name: ${APCUPSD_CONTAINER_NAME}
environment:
- APCUPSD_HOST=${APCUPSD_ENVIRONMENT_HOST}
- INFLUXDB_HOST=${APCUPSD_ENVIRONMENT_INFLUXDB_HOST}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/apprise/apprise.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Apprise API - Push Notifications that work with just about every platform"
com.dockstarter.appinfo.nicename: "Apprise"
com.dockstarter.appvars.apprise_container_name: "apprise"
com.dockstarter.appvars.apprise_enabled: "false"
com.dockstarter.appvars.apprise_network_mode: ""
com.dockstarter.appvars.apprise_port_8000: "8000"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/apprise/apprise.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
apprise:
container_name: apprise
container_name: ${APPRISE_CONTAINER_NAME}
environment:
- PGID=${PGID}
- PUID=${PUID}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/audiobookshelf/audiobookshelf.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Self-hosted audiobook and podcast server"
com.dockstarter.appinfo.nicename: "audiobookshelf"
com.dockstarter.appvars.audiobookshelf_container_name: "audiobookshelf"
com.dockstarter.appvars.audiobookshelf_enabled: "false"
com.dockstarter.appvars.audiobookshelf_network_mode: ""
com.dockstarter.appvars.audiobookshelf_port_80: "13378"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/audiobookshelf/audiobookshelf.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
audiobookshelf:
container_name: audiobookshelf
container_name: ${AUDIOBOOKSHELF_CONTAINER_NAME}
environment:
- CONFIG_PATH=/config
- HOME=/config/.home
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/autobrr/autobrr.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "autobrr is the modern download automation tool for torrents and usenet."
com.dockstarter.appinfo.nicename: "autobrr"
com.dockstarter.appvars.autobrr_container_name: "autobrr"
com.dockstarter.appvars.autobrr_enabled: "false"
com.dockstarter.appvars.autobrr_network_mode: ""
com.dockstarter.appvars.autobrr_port_7474: "7474"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/autobrr/autobrr.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
autobrr:
container_name: autobrr
container_name: ${AUTOBRR_CONTAINER_NAME}
environment:
- TZ=${TZ}
restart: ${AUTOBRR_RESTART}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/azuracast/azuracast.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Web radio management suite with Liquidsoap and Icecast."
com.dockstarter.appinfo.nicename: "AzuraCast"
com.dockstarter.appvars.azuracast_container_name: "azuracast"
com.dockstarter.appvars.azuracast_enabled: "false"
com.dockstarter.appvars.azuracast_environment_application_env: "production"
com.dockstarter.appvars.azuracast_environment_enable_redis: "true"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/azuracast/azuracast.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
azuracast:
container_name: azuracast
container_name: ${AZURACAST_CONTAINER_NAME}
environment:
- PGID=${PGID}
- PUID=${PUID}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/bazarr/bazarr.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Companion to Sonarr to manage and download subtitles"
com.dockstarter.appinfo.nicename: "Bazarr"
com.dockstarter.appvars.bazarr_container_name: "bazarr"
com.dockstarter.appvars.bazarr_enabled: "false"
com.dockstarter.appvars.bazarr_network_mode: ""
com.dockstarter.appvars.bazarr_port_6767: "6767"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/bazarr/bazarr.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
bazarr:
container_name: bazarr
container_name: ${BAZARR_CONTAINER_NAME}
environment:
- PGID=${PGID}
- PUID=${PUID}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/beets/beets.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Music library manager and MusicBrainz tagger"
com.dockstarter.appinfo.nicename: "Beets"
com.dockstarter.appvars.beets_container_name: "beets"
com.dockstarter.appvars.beets_enabled: "false"
com.dockstarter.appvars.beets_network_mode: ""
com.dockstarter.appvars.beets_port_8337: "8337"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/beets/beets.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
beets:
container_name: beets
container_name: ${BEETS_CONTAINER_NAME}
environment:
- PGID=${PGID}
- PUID=${PUID}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/bitwarden/bitwarden.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Free and open source password management solution"
com.dockstarter.appinfo.nicename: "Bitwarden"
com.dockstarter.appvars.bitwarden_container_name: "bitwarden"
com.dockstarter.appvars.bitwarden_enabled: "false"
com.dockstarter.appvars.bitwarden_environment_admin_token: ""
com.dockstarter.appvars.bitwarden_environment_database_url: "data/db.sqlite3"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/bitwarden/bitwarden.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
bitwarden:
container_name: bitwarden
container_name: ${BITWARDEN_CONTAINER_NAME}
environment:
- ADMIN_TOKEN=${BITWARDEN_ENVIRONMENT_ADMIN_TOKEN}
- DATABASE_URL=${BITWARDEN_ENVIRONMENT_DATABASE_URL}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/booksonic/booksonic.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) Use BooksonicAir"
com.dockstarter.appinfo.nicename: "Booksonic"
com.dockstarter.appvars.booksonic_container_name: "booksonic"
com.dockstarter.appvars.booksonic_enabled: "false"
com.dockstarter.appvars.booksonic_environment_context_path: "/booksonic"
com.dockstarter.appvars.booksonic_network_mode: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/booksonic/booksonic.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
booksonic:
container_name: booksonic
container_name: ${BOOKSONIC_CONTAINER_NAME}
environment:
- CONTEXT_PATH=${BOOKSONIC_ENVIRONMENT_CONTEXT_PATH}
- PGID=${PGID}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/booksonicair/booksonicair.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Web-based streamer for your audiobooks."
com.dockstarter.appinfo.nicename: "Booksonicair"
com.dockstarter.appvars.booksonicair_container_name: "booksonicair"
com.dockstarter.appvars.booksonicair_enabled: "false"
com.dockstarter.appvars.booksonicair_environment_context_path: "/booksonicair"
com.dockstarter.appvars.booksonicair_network_mode: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/booksonicair/booksonicair.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
booksonicair:
container_name: booksonicair
container_name: ${BOOKSONICAIR_CONTAINER_NAME}
environment:
- CONTEXT_PATH=${BOOKSONICAIR_ENVIRONMENT_CONTEXT_PATH}
- PGID=${PGID}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/bookstack/bookstack.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Platform for storing and organising information and documentation"
com.dockstarter.appinfo.nicename: "BookStack"
com.dockstarter.appvars.bookstack_container_name: "bookstack"
com.dockstarter.appvars.bookstack_enabled: "false"
com.dockstarter.appvars.bookstack_environment_app_url: ""
com.dockstarter.appvars.bookstack_environment_db_database: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/bookstack/bookstack.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
bookstack:
container_name: bookstack
container_name: ${BOOKSTACK_CONTAINER_NAME}
environment:
- APP_URL=${BOOKSTACK_ENVIRONMENT_APP_URL}
- DB_DATABASE=${BOOKSTACK_ENVIRONMENT_DB_DATABASE}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/calibre/calibre.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Easy to use e-book manager"
com.dockstarter.appinfo.nicename: "Calibre"
com.dockstarter.appvars.calibre_container_name: "calibre"
com.dockstarter.appvars.calibre_enabled: "false"
com.dockstarter.appvars.calibre_environment_cli_args: ""
com.dockstarter.appvars.calibre_environment_guac_pass: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/calibre/calibre.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
calibre:
container_name: calibre
container_name: ${CALIBRE_CONTAINER_NAME}
environment:
- CALIBRE_USE_DARK_PALETTE=${CALIBRE_ENVIRONMENT_USE_DARK_PALETTE}
- CLI_ARGS=${CALIBRE_ENVIRONMENT_CLI_ARGS}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/calibreweb/calibreweb.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Web app for browsing, reading and downloading eBooks"
com.dockstarter.appinfo.nicename: "CalibreWeb"
com.dockstarter.appvars.calibreweb_container_name: "calibreweb"
com.dockstarter.appvars.calibreweb_enabled: "false"
com.dockstarter.appvars.calibreweb_network_mode: ""
com.dockstarter.appvars.calibreweb_port_8083: "8083"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/calibreweb/calibreweb.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
calibreweb:
container_name: calibreweb
container_name: ${CALIBREWEB_CONTAINER_NAME}
environment:
- PGID=${PGID}
- PUID=${PUID}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/cloudcmd/cloudcmd.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "A web file manager with console and editor"
com.dockstarter.appinfo.nicename: "CloudCMD"
com.dockstarter.appvars.cloudcmd_container_name: "cloudcmd"
com.dockstarter.appvars.cloudcmd_enabled: "false"
com.dockstarter.appvars.cloudcmd_network_mode: ""
com.dockstarter.appvars.cloudcmd_port_8000: "8000"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/cloudcmd/cloudcmd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
cloudcmd:
container_name: cloudcmd
container_name: ${CLOUDCMD_CONTAINER_NAME}
environment:
- TZ=${TZ}
restart: ${CLOUDCMD_RESTART}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/cloudflareddns/cloudflareddns.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Free service which will point a DNS to an IP of your choice"
com.dockstarter.appinfo.nicename: "CloudFlareDDNS"
com.dockstarter.appvars.cloudflareddns_container_name: "cloudflareddns"
com.dockstarter.appvars.cloudflareddns_enabled: "false"
com.dockstarter.appvars.cloudflareddns_environment_apikey: ""
com.dockstarter.appvars.cloudflareddns_environment_apitoken: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/cloudflareddns/cloudflareddns.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
cloudflareddns:
container_name: cloudflareddns
container_name: ${CLOUDFLAREDDNS_CONTAINER_NAME}
environment:
- ARGS=${CLOUDFLAREDDNS_ENVIRONMENT_ARGS}
- CF_APIKEY=${CLOUDFLAREDDNS_ENVIRONMENT_APIKEY}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/codeserver/codeserver.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "VS Code running on a remote server, accessible through the browser"
com.dockstarter.appinfo.nicename: "codeserver"
com.dockstarter.appvars.codeserver_container_name: "codeserver"
com.dockstarter.appvars.codeserver_enabled: "false"
com.dockstarter.appvars.codeserver_environment_password: ""
com.dockstarter.appvars.codeserver_environment_sudo_password: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/codeserver/codeserver.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
codeserver:
container_name: codeserver
container_name: ${CODESERVER_CONTAINER_NAME}
environment:
- PASSWORD=${CODESERVER_ENVIRONMENT_PASSWORD}
- PGID=${PGID}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/couchpotato/couchpotato.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "true"
com.dockstarter.appinfo.description: "(DEPRECATED) Use Radarr"
com.dockstarter.appinfo.nicename: "CouchPotato"
com.dockstarter.appvars.couchpotato_container_name: "couchpotato"
com.dockstarter.appvars.couchpotato_enabled: "false"
com.dockstarter.appvars.couchpotato_network_mode: ""
com.dockstarter.appvars.couchpotato_port_5050: "5050"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/couchpotato/couchpotato.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
couchpotato:
container_name: couchpotato
container_name: ${COUCHPOTATO_CONTAINER_NAME}
environment:
- PGID=${PGID}
- PUID=${PUID}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/dasshio/dasshio.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Use Amazon Dash buttons to communicate with Home Assistant."
com.dockstarter.appinfo.nicename: "Dasshio"
com.dockstarter.appvars.dasshio_container_name: "dasshio"
com.dockstarter.appvars.dasshio_enabled: "false"
com.dockstarter.appvars.dasshio_environment_homeassistant_auth_token: ""
com.dockstarter.appvars.dasshio_environment_homeassistant_url: ""
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/dasshio/dasshio.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
dasshio:
container_name: dasshio
container_name: ${DASSHIO_CONTAINER_NAME}
environment:
- HA_BASE_URL=${DASSHIO_ENVIRONMENT_HOMEASSISTANT_URL}
- HASSIO_TOKEN=${DASSHIO_ENVIRONMENT_HOMEASSISTANT_AUTH_TOKEN}
Expand Down
1 change: 1 addition & 0 deletions compose/.apps/ddclient/ddclient.labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ services:
com.dockstarter.appinfo.deprecated: "false"
com.dockstarter.appinfo.description: "Update dynamic DNS entries"
com.dockstarter.appinfo.nicename: "DDClient"
com.dockstarter.appvars.ddclient_container_name: "ddclient"
com.dockstarter.appvars.ddclient_enabled: "false"
com.dockstarter.appvars.ddclient_network_mode: ""
com.dockstarter.appvars.ddclient_restart: "unless-stopped"
Expand Down
2 changes: 1 addition & 1 deletion compose/.apps/ddclient/ddclient.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
ddclient:
container_name: ddclient
container_name: ${DDCLIENT_CONTAINER_NAME}
environment:
- PGID=${PGID}
- PUID=${PUID}
Expand Down
Loading

0 comments on commit d6c67c3

Please sign in to comment.