Skip to content

Commit 1733ca5

Browse files
committed
updated compose files and dozzle .env
1 parent a77eef2 commit 1733ca5

4 files changed

Lines changed: 30 additions & 19 deletions

File tree

apps/dozzle/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#DOZZLE_REMOTE_AGENT=agent1:7007,agent2:7007
33

44
# enable start, stop and restart
5-
DOZZLE_ACTIONS=false
5+
DOZZLE_ENABLE_ACTIONS=false
66

77
# enable container shell access
88
DOZZLE_ENABLE_SHELL=false

apps/home-assistant/docker-compose.yml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,20 @@ services:
1414
- /etc/localtime:/etc/localtime:ro
1515
- /run/dbus:/run/dbus:ro
1616
networks:
17-
- hass
18-
- proxy
19-
- mqtt
20-
- db
21-
- mdns
22-
- llama
17+
hass:
18+
proxy:
19+
mqtt:
20+
db:
21+
mdns:
22+
llama:
23+
caddy:
24+
lan:
25+
ipv4_address: ${IPV4_ADDRESS}
2326
extra_hosts:
2427
- "host.docker.internal:host-gateway"
25-
ports:
26-
- 8123:8123
27-
- 5060:5060
28+
# ports:
29+
# - 8123:8123
30+
# - 5060:5060
2831
networks:
2932
hass:
3033
driver: bridge
@@ -44,3 +47,9 @@ networks:
4447
llama:
4548
external: true
4649
name: llama-net
50+
lan:
51+
external: true
52+
name: lan_macvlan
53+
caddy:
54+
external: true
55+
name: caddy-home-assistant-liar-net

apps/postgresql/docker-compose.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
services:
2-
postgresql: &base
3-
image: postgres:${IMAGE_VERSION:-16}
2+
postgresql:
3+
# image: postgres:${IMAGE_VERSION:-16}
4+
image: pgautoupgrade/pgautoupgrade:18-alpine
45
hostname: postgresql
56
container_name: postgresql
67
restart: unless-stopped
8+
command: >
9+
postgres
10+
-c max_wal_size=2GB
11+
-c checkpoint_completion_target=0.9
712
networks:
813
- db
9-
- proxy
1014
volumes:
11-
- ../../lib/postgresql:/var/lib/postgresql/data
15+
- ../../lib/postgresql:/var/lib/postgresql
1216
- ../../log/postgresql:/var/log/postgresql/
1317
shm_size: 128mb
1418
env_file:
@@ -17,6 +21,3 @@ services:
1721
networks:
1822
db:
1923
name: postgres-net
20-
proxy:
21-
name: nginx-proxy-net
22-
external: true

apps/whisper/docker-compose.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ services:
44
container_name: whisper
55
hostname: whisper
66
restart: unless-stopped
7-
entrypoint: python3
8-
command: -m wyoming_faster_whisper --uri tcp://0.0.0.0:10300 --model tiny-int8 --beam-size 1 --language en --data-dir /data --download-dir /data
7+
# entrypoint: python3
8+
command: --model tiny-int8 --data-dir /data --download-dir /data
9+
# command: -m wyoming_faster_whisper --uri tcp://0.0.0.0:10300 --model tiny-int8 --beam-size 1 --language en --data-dir /data --download-dir /data
910
# ports:
1011
# - 10300:10300
1112
volumes:

0 commit comments

Comments
 (0)