lsof -i :53
OR
netstat -tulpn | grep ":53 "
--- | |
version: "2.1" | |
services: | |
homeassistant: | |
image: lscr.io/linuxserver/homeassistant:latest | |
container_name: homeassistant | |
network_mode: host | |
environment: | |
- PUID=1000 | |
- PGID=1000 |
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: |
# 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 |
--- | |
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 |
version: '3.8' | |
services: | |
app: | |
image: 'jc21/nginx-proxy-manager:latest' | |
restart: unless-stopped | |
ports: | |
- '80:80' | |
- '81:81' | |
- '443:443' | |
volumes: |
version: '3' | |
services: | |
n8n: | |
image: docker.n8n.io/n8nio/n8n | |
ports: | |
- 5678:5678 | |
environment: | |
- GENERIC_TIMEZONE=America/Chicago | |
- TZ=America/Chicago |