Skip to content

Instantly share code, notes, and snippets.

View dragonfire1119's full-sized avatar
😲
Turning ideas into reality!

Christopher dragonfire1119

😲
Turning ideas into reality!
View GitHub Profile
@dragonfire1119
dragonfire1119 / install-ha-docker-compose.yaml
Created July 15, 2023 17:39
Install Home Assistant on Portainer
---
version: "2.1"
services:
homeassistant:
image: lscr.io/linuxserver/homeassistant:latest
container_name: homeassistant
network_mode: host
environment:
- PUID=1000
- PGID=1000
@dragonfire1119
dragonfire1119 / disable-systemd-resolved-service.md
Last active March 23, 2025 08:14
Disable systemd-resolved

Check and see if port 53 is taken:

lsof -i :53

OR

netstat -tulpn | grep ":53 "
@dragonfire1119
dragonfire1119 / KASM-COSMOS-CLOUD-INSTALL-README.md
Last active April 17, 2024 01:19
Install kasm on Cosmos Cloud

Step 1

Remove the host ports

Step 2

Create a url for 443 and 3000

Step 3

  1. Go to the LXC console and use
docker ps
docker exec -it [id] /bin/sh
version: "3.5"
# The Scrypted docker-compose.yml file typically resides at:
# ~/.scrypted/docker-compose.yml
# Example volumes SMB (CIFS) and NFS.
# Uncomment only one.
# volumes:
# nvr:

Install Docker

curl -fsSL https://get.docker.com | sudo sh

Install Cosmos Cloud

docker run -d -p 80:80 -p 443:443 --privileged --name cosmos-server -h cosmos-server --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v /:/mnt/host -v /var/lib/cosmos:/config azukaar/cosmos-server:latest
@dragonfire1119
dragonfire1119 / docker-compose-unifi.yaml
Created July 1, 2023 16:21
Docker compose for Unifi Controller
# https://docs.linuxserver.io/images/docker-unifi-controller
---
version: "2.1"
services:
unifi-controller:
image: lscr.io/linuxserver/unifi-controller:latest
container_name: unifi-controller
environment:
- PUID=1000 # for UserID
- PGID=1000 # for GroupID
@dragonfire1119
dragonfire1119 / duck-dns-docker-compose.yaml
Created June 26, 2023 18:58
Docker Compose for Duck DNS
---
version: "2.1"
services:
duckdns:
image: lscr.io/linuxserver/duckdns:latest
container_name: duckdns
environment:
- PUID=1000 #optional
- PGID=1000 #optional
- TZ=Etc/UTC #optional
@dragonfire1119
dragonfire1119 / bbtw-nginx-proxy-manager-docker-compose
Created June 23, 2023 15:35
Nginx Proxy Manager Docker Compose
version: '3.8'
services:
app:
image: 'jc21/nginx-proxy-manager:latest'
restart: unless-stopped
ports:
- '80:80'
- '81:81'
- '443:443'
volumes:
@dragonfire1119
dragonfire1119 / n8n-docker-compose
Last active January 31, 2025 14:35
Docker compose for n8n.io
version: '3'
services:
n8n:
image: docker.n8n.io/n8nio/n8n
ports:
- 5678:5678
environment:
- GENERIC_TIMEZONE=America/Chicago
- TZ=America/Chicago