Skip to content

Commit 6a95f72

Browse files
committed
fixed a few typos
get rid of porsts on snapserver fixed mosquitto mkuser
1 parent 816fb01 commit 6a95f72

7 files changed

Lines changed: 16 additions & 133 deletions

File tree

auto_planka

home-assistant/docker-compose.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ services:
77
restart: unless-stopped
88
volumes:
99
- ../../lib/home-assistant:/config
10+
# these make images available to mqtt2template without exposing lots of other
11+
# data or making them accidentally available through other services
12+
# this also makes it easy for mqtt2template to check how recent an image is or if it's valid
13+
- ../../lib/mqtt2template/websites/outside/images:/config/websites/outside
1014
- /etc/localtime:/etc/localtime:ro
1115
- /run/dbus:/run/dbus:ro
1216
networks:

mopidy/config/mopidy.conf

Lines changed: 0 additions & 122 deletions
This file was deleted.

mosquitto/bin/mkuser.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ echo
2525
echo "Only usable from within a hackstack container. To use externally, replace 'mosquitto' with the name or IP address or name of this server"
2626

2727
echo "creating user:"
28-
CMD="docker compose -f ../docker-compose.yml exec mosquitto mosquitto_passwd -b /mosquitto/data/mos_passwd ${USER} ${PASSWORD}"
28+
CMD="docker compose -f ../docker-compose.yml exec mosquitto mosquitto_passwd -b /mosquitto/config/mos_passwd ${USER} ${PASSWORD}"
2929
echo " ${CMD}"
3030
if $CMD ; then
3131
echo "successful"

netboot/docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ services:
55
container_name: netbootxyz
66
environment:
77
- MENU_VERSION=2.0.47 # optional
8-
- NGINX_PORT=3080 # optional
9-
- WEB_APP_PORT=3100 # optional
8+
- NGINX_PORT=80 # optional
9+
- WEB_APP_PORT=3000 # optional
1010
volumes:
1111
- /opt/docker/netboot/data/config:/config # optional
1212
- /opt/docker/netboot/assets:/assets # optional
1313
ports:
14-
# - 3100:3000 # optional, destination should match ${WEB_APP_PORT} variable above.
14+
- 3000:3000 # optional, destination should match ${WEB_APP_PORT} variable above.
1515
- 69:69/udp
16-
# - 3188:80 # optional, destination should match ${NGINX_PORT} variable above.
16+
- 3080:80 # optional, destination should match ${NGINX_PORT} variable above.
1717
restart: unless-stopped
1818
networks:
1919
default:

partdb/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
volumes:
1313
- ../../lib/partdb//uploads:/var/www/html/uploads
1414
- ../../lib/partdb/public_media:/var/www/html/public/media
15-
- ../../lib/partdb//db:/var/www/html/var/db
15+
- ../../lib/partdb/db:/var/www/html/var/db
1616
env_file:
1717
- .env
1818
networks:

snapserver/docker-compose.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ services:
33
# image: saiyato/snapserver
44
image: ivdata/snapserver
55
hostname: snapserver
6+
network_mode: host
67
container_name: snapserver
78
restart: unless-stopped
8-
ports:
9-
- 1704:1704 # port for the actual audio streaming
10-
- 1705:1705 # port for TCP Json RPC
11-
- 1780:1780 # port for the SnapWeb Webinterface
9+
# ports:
10+
# - 1704:1704 # port for the actual audio streaming
11+
# - 1705:1705 # port for TCP Json RPC
12+
# - 1780:1780 # port for the SnapWeb Webinterface
1213
volumes:
1314
- ./config/snapcast.conf:/etc/snapcast.conf
1415
- ../../run/snapserver/fifo:/tmp/snapfile

0 commit comments

Comments
 (0)