This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2.1" | |
services: | |
wikijs: | |
image: linuxserver/wikijs | |
container_name: wikijs | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=America/Denver |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2.1" | |
services: | |
funkwhale: | |
image: thetarkus/funkwhale | |
container_name: funkwhale | |
environment: | |
- FUNKWHALE_HOSTNAME=tanix.local | |
- NEXTED_PROXY=0 | |
volumes: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2.1" | |
services: | |
trilium: | |
image: zadam/trilium:latest | |
container_name: trilium | |
volumes: | |
- /srv/Trillium/trilium-data:/root/trilium-data | |
ports: | |
- 8080:8080 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2" | |
services: | |
taisun: | |
image: linuxserver/taisun | |
container_name: taisun | |
network_mode: bridge | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
ports: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2" | |
services: | |
whoogle: | |
image: benbusby/whoogle-search:latest | |
container_name: whoogle | |
ports: | |
- 5000:5000 | |
restart: unless-stopped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: "2" | |
services: | |
cacti: | |
image: quantumobject/docker-cacti | |
container_name: cacti | |
ports: | |
- 8081:80 | |
environment: | |
- TZ=America/Denver |