Skip to content

Instantly share code, notes, and snippets.

View dnburgess's full-sized avatar

David Burgess dnburgess

View GitHub Profile
---
version: "2.1"
services:
wikijs:
image: linuxserver/wikijs
container_name: wikijs
environment:
- PUID=998
- PGID=100
- TZ=America/Denver
Port 53 Issues
Usually stems from systemd using port 53.
Use this command to make sure that systemd is using the port:
ss -tlupn
Fix is:
stop systemd-resolved "sudo systemctl stop systemd-resolved"
Edit /etc/systemd/resolved.conf with these:
---
version: "2.1"
services:
funkwhale:
image: thetarkus/funkwhale
container_name: funkwhale
environment:
- FUNKWHALE_HOSTNAME=tanix.local
- NEXTED_PROXY=0
volumes:
---
version: "2.1"
services:
trilium:
image: zadam/trilium:latest
container_name: trilium
volumes:
- /srv/Trillium/trilium-data:/root/trilium-data
ports:
- 8080:8080
---
version: "2.1"
services:
openhab:
image: openhab/openhab:latest
container_name: openhab
environment:
- LANG=en_US.UTF-8
- LANGUAGE=en_US.UTF-8
- OPENHAB_HTTP_PORT=8080
@dnburgess
dnburgess / gist:a6fbb1cf538fb042f09c0b1c453352c2
Created August 31, 2020 17:00
DB Tech Update Portainer to 2.0
#Run this command to create a "portainer_data" volume
docker volume create portainer_data
#Run this command to install Porainer 2.0 / Portainer CE
docker run -d -p 9000:9000 -p 8000:8000 --name portainer --restart always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce
---
version: "2"
services:
taisun:
image: linuxserver/taisun
container_name: taisun
network_mode: bridge
volumes:
- /var/run/docker.sock:/var/run/docker.sock
ports:
@dnburgess
dnburgess / gist:b5608a97dcb2338d09d9736a8f604f5f
Last active September 9, 2020 13:22
DB Tech Zoneminder
---
version: "2"
services:
zoneminder:
image: dlandon/zoneminder
container_name: zoneminder
network_mode: bridge
volumes:
- /mnt/Zoneminder:/config:rw
- /mnt/Zoneminder/data:/var/cache/zoneminder:rw
---
version: "2"
services:
whoogle:
image: benbusby/whoogle-search:latest
container_name: whoogle
ports:
- 5000:5000
restart: unless-stopped
---
version: "2"
services:
cacti:
image: quantumobject/docker-cacti
container_name: cacti
ports:
- 8081:80
environment:
- TZ=America/Denver