Skip to content

Commit 9ff551c

Browse files
committed
updates
1 parent 3e98449 commit 9ff551c

File tree

5 files changed

+42
-39
lines changed

5 files changed

+42
-39
lines changed

.env.example

100644100755
File mode changed.

LICENSE

100644100755
File mode changed.

authelia/users_database.yml.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@
99
# List of users
1010
users:
1111
USERNAME:
12+
displayname: "John Doe"
1213
password: "HASHED_PASSWORD"
1314
email: USER_EMAIL
1415
groups:
1516
- admins
1617
- dev
1718
# EXAMPLE USER
1819
# john:
20+
# displayname: "John Doe"
1921
# password: "$argon2id$v=19$m=1048576,p=john_strong_hashed_password"
2022
2123
# groups:

docker-compose-t2-obsolete.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,3 +253,41 @@ services:
253253
- PUID=$PUID
254254
- PGID=$PGID
255255
- TZ=$TZ
256+
257+
# Home Assistant Core - Home Automation
258+
# Added temporarily since HASS.io (Home Assistant Supervised) on Docker has been deprecated.
259+
homeassistant:
260+
container_name: hass-core
261+
restart: unless-stopped
262+
image: homeassistant/home-assistant:0.111.0
263+
networks:
264+
- t2_proxy
265+
devices:
266+
- /dev/ttyUSB0:/dev/ttyUSB0
267+
- /dev/ttyUSB1:/dev/ttyUSB1
268+
- /dev/ttyACM0:/dev/ttyACM0
269+
ports:
270+
- target: 8123
271+
published: $HOMEASSISTANT_PORT
272+
protocol: tcp
273+
mode: host
274+
privileged: true
275+
volumes:
276+
- ${USERDIR}/docker/hassio/homeassistant:/config
277+
- /etc/localtime:/etc/localtime:ro
278+
- ${USERDIR}/docker/shared:/shared
279+
- ${USERDIR}/docker/open-zwave:/open-zwave
280+
environment:
281+
- PUID=${PUID}
282+
- PGID=${PGID}
283+
- TZ=${TZ}
284+
labels:
285+
- "traefik.enable=true"
286+
## HTTP Routers
287+
- "traefik.http.routers.homeassistant-rtr.entrypoints=https"
288+
- "traefik.http.routers.homeassistant-rtr.rule=Host(`hassio.$DOMAINNAME`)"
289+
## Middlewares
290+
- "traefik.http.routers.homeassistant-rtr.middlewares=chain-no-auth@file"
291+
## HTTP Services
292+
- "traefik.http.routers.homeassistant-rtr.service=homeassistant-svc"
293+
- "traefik.http.services.homeassistant-svc.loadbalancer.server.port=8123"

docker-compose-t2.yml

Lines changed: 2 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ services:
157157
container_name: authelia
158158
# Check this before upgrading: https://github.com/authelia/authelia/blob/master/BREAKING.md
159159
# image: authelia/authelia:latest
160-
image: authelia/authelia:4.20
160+
image: authelia/authelia:4.21.0
161161
restart: always
162162
networks:
163163
- t2_proxy
@@ -296,44 +296,6 @@ services:
296296

297297
############################# SMART HOME
298298

299-
# Home Assistant Core - Home Automation
300-
# Added temporarily since HASS.io (Home Assistant Supervised) on Docker has been deprecated.
301-
homeassistant:
302-
container_name: hass-core
303-
restart: unless-stopped
304-
image: homeassistant/home-assistant:0.111.0
305-
networks:
306-
- t2_proxy
307-
devices:
308-
- /dev/ttyUSB0:/dev/ttyUSB0
309-
- /dev/ttyUSB1:/dev/ttyUSB1
310-
- /dev/ttyACM0:/dev/ttyACM0
311-
ports:
312-
- target: 8123
313-
published: $HOMEASSISTANT_PORT
314-
protocol: tcp
315-
mode: host
316-
privileged: true
317-
volumes:
318-
- ${USERDIR}/docker/hassio/homeassistant:/config
319-
- /etc/localtime:/etc/localtime:ro
320-
- ${USERDIR}/docker/shared:/shared
321-
- ${USERDIR}/docker/open-zwave:/open-zwave
322-
environment:
323-
- PUID=${PUID}
324-
- PGID=${PGID}
325-
- TZ=${TZ}
326-
labels:
327-
- "traefik.enable=true"
328-
## HTTP Routers
329-
- "traefik.http.routers.homeassistant-rtr.entrypoints=https"
330-
- "traefik.http.routers.homeassistant-rtr.rule=Host(`hassio.$DOMAINNAME`)"
331-
## Middlewares
332-
- "traefik.http.routers.homeassistant-rtr.middlewares=chain-no-auth@file"
333-
## HTTP Services
334-
- "traefik.http.routers.homeassistant-rtr.service=homeassistant-svc"
335-
- "traefik.http.services.homeassistant-svc.loadbalancer.server.port=8123"
336-
337299
# HA-Dockermon - Manage Docker containers in Home Assistant
338300
ha-dockermon:
339301
image: philhawthorne/ha-dockermon:latest
@@ -1846,3 +1808,4 @@ services:
18461808
- "traefik.http.routers.cf-companion-rtr.rule=Host(`shell.$DOMAINNAME`)"
18471809
- "traefik.http.routers.cf-companion-rtr.rule=Host(`syno.$DOMAINNAME`)"
18481810
- "traefik.http.routers.cf-companion-rtr.rule=Host(`ufi.$DOMAINNAME`)"
1811+
- "traefik.http.routers.cf-companion-rtr.rule=Host(`webmin.$DOMAINNAME`)"

0 commit comments

Comments
 (0)