mirror of
https://github.com/furyhawk/cloudy.git
synced 2026-05-21 15:36:49 +00:00
feat: add deployment configurations for Jellyfin and ESPHome services
This commit is contained in:
@@ -191,5 +191,20 @@ deploy-nextcloud: pull
|
|||||||
set +a ;\
|
set +a ;\
|
||||||
docker stack deploy --compose-file ./swarm/nextcloud.yml nextcloud ;\
|
docker stack deploy --compose-file ./swarm/nextcloud.yml nextcloud ;\
|
||||||
}
|
}
|
||||||
|
deploy-jellyfin: pull
|
||||||
|
{ \
|
||||||
|
echo "Deploying the jellyfin stack..." ;\
|
||||||
|
set -a ;\
|
||||||
|
. ./swarm/.env ;\
|
||||||
|
set +a ;\
|
||||||
|
docker stack deploy --compose-file ./swarm/jellyfin.yml jellyfin ;\
|
||||||
|
}
|
||||||
|
deploy-esphome: pull
|
||||||
|
{ \
|
||||||
|
echo "Deploying the esphome stack..." ;\
|
||||||
|
set -a ;\
|
||||||
|
. ./swarm/.env ;\
|
||||||
|
set +a ;\ docker stack deploy --compose-file ./swarm/esphome.yml esphome ;\
|
||||||
|
}
|
||||||
|
|
||||||
# git submodule update --init --recursive
|
# git submodule update --init --recursive
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
services:
|
||||||
|
esphome:
|
||||||
|
container_name: esphome
|
||||||
|
image: ghcr.io/esphome/esphome
|
||||||
|
environment:
|
||||||
|
- USERNAME=${ESPHOME_USERNAME}
|
||||||
|
- PASSWORD=${ESPHOME_PASSWORD}
|
||||||
|
volumes:
|
||||||
|
- /var/data/esphome/config:/config
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
restart: always
|
||||||
|
privileged: true
|
||||||
|
network_mode: host
|
||||||
|
deploy:
|
||||||
|
# placement:
|
||||||
|
# constraints:
|
||||||
|
# - node.labels.esphome.esphome_config == true
|
||||||
|
labels:
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.swarm.network=traefik-public
|
||||||
|
- traefik.constraint-label=traefik-public
|
||||||
|
- traefik.http.routers.esphome.entrypoints=https
|
||||||
|
- traefik.http.routers.esphome.rule=Host(`esphome.${DOMAIN}`)
|
||||||
|
- traefik.http.routers.esphome.tls.certresolver=le
|
||||||
|
- traefik.http.routers.esphome.service=esphome_app
|
||||||
|
- traefik.http.services.esphome_app.loadbalancer.server.port=6052
|
||||||
Reference in New Issue
Block a user