Remove unused services

This commit is contained in:
Robert 2023-11-26 01:39:57 -08:00
parent fbb856d60f
commit 4de59fd122
2 changed files with 0 additions and 103 deletions

View File

@ -1,79 +0,0 @@
#version: '3.8'
#
#services:
# traefik:
# image: traefik:v2.5
# # Enables the web UI and tells Traefik to listen to docker
# command: --api.insecure=true --providers.docker
# ports:
# # The HTTP port
# - "80:80"
# # The HTTPS port
# - "443:443"
# # The Web UI (enabled by --api.insecure=true)
# - "8080:8080"
# volumes:
# # So that Traefik can listen to the Docker events
# - /var/run/docker.sock:/var/run/docker.sock
# - /root/apps.pem:/root/apps.pem
# - /etc/traefik/traefik.yml:/etc/traefik/traefik.yml
# - /etc/traefik/dynamic_conf.yml:/etc/traefik/dynamic_conf.yml
version: "3.8"
services:
traefik:
image: traefik:v2.5
command:
- "--api.dashboard=true"
- "--accesslog=true"
- "--log.level=INFO"
- "--providers.docker.endpoint=unix:///var/run/docker.sock"
- "--providers.docker.swarmMode=true"
- "--providers.docker.exposedbydefault=false"
- "--providers.docker.network=traefik-public"
- "--providers.docker.watch=true"
- "--providers.file.watch=true"
- "--providers.file.filename=/file_provider.yml"
- "--entrypoints.web.address=:80"
- "--entrypoints.websecure.address=:443"
ports:
- 80:80
- 443:443
volumes:
- traefik-certificates:/letsencrypt
- /var/run/docker.sock:/var/run/docker.sock
networks:
- traefik-public
environment:
- "CF_API_EMAIL=admin@taudris.com"
- "CF_API_KEY=api-key"
deploy:
placement:
constraints:
- node.role == manager
labels:
- "traefik.enable=true"
- "traefik.docker.lbswarm=true"
- "traefik.http.routers.http-catchall.rule=hostregexp(`{host:.+}`)"
- "traefik.http.routers.http-catchall.entrypoints=web"
- "traefik.http.routers.http-catchall.middlewares=redirect-to-https@docker"
- "traefik.http.middlewares.redirect-to-https.redirectscheme.scheme=https"
- "traefik.http.routers.api.tls.domains[0].main=apps.taudris.com"
- "traefik.http.routers.api.tls.domains[0].sans=*.apps.taudris.com"
- "traefik.http.routers.api.rule=Host(`traefik.taudris.com`) && (PathPrefix(`/api`) || PathPrefix(`/dashboard`))"
- "traefik.http.routers.api.service=api@internal"
- "traefik.http.services.api.loadbalancer.server.port=8080"
configs:
- file_provider.yml
volumes:
traefik-certificates:
configs:
file_provider.yml:
file: /etc/traefik/dynamic.yml
networks:
traefik-public:
external: true

View File

@ -1,24 +0,0 @@
version: "3.8"
services:
unifi-controller:
image: lscr.io/linuxserver/unifi-controller:latest
container_name: unifi-controller
environment:
- PUID=1003
- PGID=1003
- MEM_LIMIT=1024 #optional
- MEM_STARTUP=1024 #optional
volumes:
- /etc/unifi-controller/config:/config
ports:
- 8443:8443
- 3478:3478/udp
- 10001:10001/udp
- 8080:8080
- 1900:1900/udp #optional
- 8843:8843 #optional
- 8880:8880 #optional
- 6789:6789 #optional
- 5514:5514/udp #optional
restart: unless-stopped