mirror of
https://github.com/MSWS/Homelab.git
synced 2025-12-05 23:00:24 -08:00
Remove compose comments
This commit is contained in:
@@ -22,9 +22,6 @@ services:
|
||||
- dbdata:/var/lib/mysql
|
||||
networks:
|
||||
- chyrp_internal
|
||||
# ports:
|
||||
# - "3306:3306"
|
||||
|
||||
|
||||
volumes:
|
||||
data:
|
||||
|
||||
@@ -13,17 +13,3 @@ services:
|
||||
- CF_API_TOKEN=${CF_API_TOKEN}
|
||||
- DOMAINS=*.code.msws.xyz
|
||||
- PROXIED=false
|
||||
# cf-internal:
|
||||
# image: favonia/cloudflare-ddns:latest
|
||||
# network_mode: host
|
||||
# restart: always
|
||||
# user: "1000:1000"
|
||||
# cap_drop:
|
||||
# - all
|
||||
# read_only: true
|
||||
# security_opt:
|
||||
# - no-new-privileges:true
|
||||
# environment:
|
||||
# CF_API_TOKEN: ${CF_API_TOKEN}
|
||||
# DOMAINS: "go.msws.xyz"
|
||||
# PROXIED: "true"
|
||||
|
||||
@@ -6,11 +6,9 @@ services:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
# - HASHED_PASSWORD=${HASHED_PASSWORD} #optional
|
||||
# - SUDO_PASSWORD_HASH=${SUDO_PASSWORD_HASH} #optional
|
||||
- SUDO_PASSWORD=${SUDO_PASSWORD}
|
||||
- PROXY_DOMAIN=code.msws.xyz #optional
|
||||
- DEFAULT_WORKSPACE=/config/workspace #optional
|
||||
- PROXY_DOMAIN=code.msws.xyz
|
||||
- DEFAULT_WORKSPACE=/config/workspace
|
||||
volumes:
|
||||
- "project-data:/config"
|
||||
- "install-data:/home/abc/.local/share/code-server"
|
||||
|
||||
@@ -9,5 +9,5 @@ services:
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
max-file: "5" # number of files or file count
|
||||
max-size: "10m" # file size
|
||||
max-file: "5"
|
||||
max-size: "10m"
|
||||
|
||||
@@ -1,36 +0,0 @@
|
||||
services:
|
||||
grafana:
|
||||
image: grafana/grafana
|
||||
container_name: grafana
|
||||
ports:
|
||||
- "9213:3000"
|
||||
environment:
|
||||
GF_FEATURE_TOGGLES_ENABLE: "publicDashboards"
|
||||
GF_SERVER_ROOT_URL: "https://stats.msws.xyz"
|
||||
restart: always
|
||||
volumes:
|
||||
- grafana-data:/var/lib/grafana
|
||||
networks:
|
||||
- monolith_default
|
||||
|
||||
prometheus:
|
||||
image: prom/prometheus:latest
|
||||
container_name: prometheus
|
||||
restart: always
|
||||
ports:
|
||||
- "9090:9090"
|
||||
volumes:
|
||||
- prometheus-data:/etc/prometheus/
|
||||
command:
|
||||
- '--config.file=/etc/prometheus/prometheus.yml'
|
||||
- '--storage.tsdb.retention.time=365d'
|
||||
networks:
|
||||
- monolith_default
|
||||
|
||||
volumes:
|
||||
grafana-data:
|
||||
prometheus-data:
|
||||
|
||||
networks:
|
||||
monolith_default:
|
||||
external: true
|
||||
@@ -52,7 +52,6 @@ services:
|
||||
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
|
||||
networks:
|
||||
- invidious-db
|
||||
- cloudflared
|
||||
|
||||
volumes:
|
||||
postgresdata:
|
||||
|
||||
@@ -12,10 +12,8 @@ services:
|
||||
source: /home/iboaz/jellyfin/media
|
||||
target: /media
|
||||
restart: always
|
||||
# Optional - alternative address used for autodiscovery
|
||||
environment:
|
||||
- JELLYFIN_PublishedServerUrl=https://watch.msws.xyz
|
||||
# Optional - may be necessary for docker healthcheck to pass if running in host network mode
|
||||
extra_hosts:
|
||||
- 'host.docker.internal:host-gateway'
|
||||
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
services:
|
||||
swag:
|
||||
image: linuxserver/swag #swag is the replacement for letsencrypt (see link below)
|
||||
image: linuxserver/swag
|
||||
container_name: swag
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
ports:
|
||||
- 443:443
|
||||
environment:
|
||||
- PUID=1000 #change PUID if needed
|
||||
- PGID=1000 #change PGID if needed
|
||||
- "TZ=Europe/Berlin" # change Time Zone if needed
|
||||
- "URL=msws.xyz" #insert your domain name - yourdomain.url
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- "TZ=Europe/Berlin"
|
||||
- "URL=msws.xyz"
|
||||
- "SUBDOMAINS=wildcard"
|
||||
- "EXTRA_DOMAINS=*.code.msws.xyz"
|
||||
- "VALIDATION=dns"
|
||||
- "DNSPLUGIN=cloudflare"
|
||||
- "EMAIL=imodmaker@gmail.com" # define email; required to renew certificate
|
||||
- "EMAIL=imodmaker@gmail.com"
|
||||
volumes:
|
||||
- "${PWD}/config:/config"
|
||||
networks:
|
||||
|
||||
@@ -9,7 +9,7 @@ services:
|
||||
- youtrack_logs:/opt/youtrack/logs
|
||||
- youtrack_backups:/opt/youtrack/backups
|
||||
environment:
|
||||
- YOUTRACK_MEMORY=2g # Adjust based on your server's memory
|
||||
- YOUTRACK_MEMORY=2g
|
||||
networks:
|
||||
- cloudflared
|
||||
|
||||
|
||||
Reference in New Issue
Block a user