Skip to content

Commit 9eb68b2

Browse files
committed
minor docker compose updates
1 parent 7198695 commit 9eb68b2

5 files changed

Lines changed: 18 additions & 25 deletions

File tree

glances/docker-compose.gpu.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
services:
22
glances:
3-
image: nicolargo/glances:ubuntu-3.4.0.5-full
3+
# image: nicolargo/glances:ubuntu-3.4.0.5-full
4+
image: nicolargo/glances:ubuntu-latest-full
45
container_name: glances
56
hostname: glances
67
privileged: true

ollama/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ services:
55
restart: unless-stopped
66
volumes:
77
- ../../lib/ollama:/root/.ollama
8-
# ports:
9-
# - 11434:11434
8+
ports:
9+
- 11434:11434
1010
networks:
1111
- llama
1212
env_file:

openwebui/docker-compose.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# https://github.com/open-webui/open-webui/blob/main/docker-compose.yaml
22
services:
3-
open-webui:
3+
openwebui:
44
image: ghcr.io/open-webui/open-webui:${WEBUI_DOCKER_TAG-main}
5-
container_name: open-webui
5+
container_name: openwebui
6+
hostname: openwebui
67
restart: unless-stopped
7-
ports:
8-
- 3000:8080
8+
# ports:
9+
# - 3000:8080
910
networks:
1011
- default
1112
- llama
@@ -14,8 +15,9 @@ services:
1415
env_file:
1516
- .env
1617
networks:
17-
default:
18-
driver: bridge
1918
llama:
2019
name: llama-net
2120
external: true
21+
default:
22+
name: nginx-proxy-net
23+
external: true

zigbee2mqtt/docker-compose.yml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,16 @@
11
services:
22
zigbee2mqtt:
3-
image: koenkk/zigbee2mqtt
3+
# image: koenkk/zigbee2mqtt:2.0.0
4+
image: koenkk/zigbee2mqtt:lastest
45
container_name: zigbee2mqtt
56
hostname: zigbee2mqtt
67
restart: unless-stopped
78
devices:
8-
# Make sure this matched your adapter location
9-
- /dev/serial/by-id/usb-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2496616-if00:/dev/ttyACM0
9+
- "${CONTROLLER_DEVICE}:/dev/ttyACM0"
1010
volumes:
1111
- ./data:/app/data
1212
- /run/udev:/run/udev:ro
13-
# ports:
14-
# - 8080:8080
13+
ports:
14+
- 8080:8080
1515
env_file:
1616
- .env
17-
networks:
18-
- proxy
19-
- mqtt
20-
networks:
21-
proxy:
22-
name: nginx-proxy-net
23-
external: true
24-
mqtt:
25-
name: mosquitto-net
26-
external: true

0 commit comments

Comments
 (0)