syntax linting
This commit is contained in:
@@ -1,102 +0,0 @@
|
||||
services:
|
||||
authentik-postgresql:
|
||||
image: docker.io/library/postgres:12-alpine
|
||||
container_name: authentik-postgresql
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- proxy
|
||||
healthcheck:
|
||||
test:
|
||||
- CMD-SHELL
|
||||
- pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}
|
||||
start_period: 20s
|
||||
interval: 30s
|
||||
retries: 5
|
||||
timeout: 5s
|
||||
volumes:
|
||||
- /home/fxequals/docker/authentik/database:/var/lib/postgresql/data
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
POSTGRES_PASSWORD: ${PG_PASS:?database password required}
|
||||
POSTGRES_USER: ${PG_USER:-authentik}
|
||||
POSTGRES_DB: ${PG_DB:-authentik}
|
||||
env_file:
|
||||
- .env
|
||||
authentik-redis:
|
||||
image: docker.io/library/redis:alpine
|
||||
container_name: authentik-redis
|
||||
command: --save 60 1 --loglevel warning
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- proxy
|
||||
healthcheck:
|
||||
test:
|
||||
- CMD-SHELL
|
||||
- redis-cli ping | grep PONG
|
||||
start_period: 20s
|
||||
interval: 30s
|
||||
retries: 5
|
||||
timeout: 3s
|
||||
volumes:
|
||||
- /home/fxequals/docker/authentik/redis:/data
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
authentik-server:
|
||||
image: ghcr.io/goauthentik/server:latest
|
||||
command: server
|
||||
container_name: authentik-server
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
proxy:
|
||||
ipv4_address: 172.18.1.10
|
||||
# ports:
|
||||
# - 9000:9000 # Remove after putting Authentik behind NGINX
|
||||
# - 9443:9443 # Remove after putting Authentik behind NGINX
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
AUTHENTIK_REDIS__HOST: authentik-redis
|
||||
AUTHENTIK_POSTGRESQL__HOST: authentik-postgresql
|
||||
AUTHENTIK_POSTGRESQL__USER: ${PG_USER:-authentik}
|
||||
AUTHENTIK_POSTGRESQL__NAME: ${PG_DB:-authentik}
|
||||
AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS}
|
||||
volumes:
|
||||
- /home/fxequals/docker/authentik/media:/media
|
||||
- /home/fxequals/docker/authentik/custom-templates:/templates
|
||||
env_file:
|
||||
- .env
|
||||
depends_on:
|
||||
- authentik-postgresql
|
||||
- authentik-redis
|
||||
authentik-worker:
|
||||
image: ghcr.io/goauthentik/server:latest
|
||||
restart: unless-stopped
|
||||
container_name: authentik-worker
|
||||
command: worker
|
||||
networks:
|
||||
- proxy
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
AUTHENTIK_REDIS__HOST: authentik-redis
|
||||
AUTHENTIK_POSTGRESQL__HOST: authentik-postgresql
|
||||
AUTHENTIK_POSTGRESQL__USER: ${PG_USER:-authentik}
|
||||
AUTHENTIK_POSTGRESQL__NAME: ${PG_DB:-authentik}
|
||||
AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS}
|
||||
volumes:
|
||||
- /home/fxequals/docker/authentik/media:/media
|
||||
- /home/fxequals/docker/authentik/certs:/certs
|
||||
- /home/fxequals/docker/authentik/custom-templates:/templates
|
||||
env_file:
|
||||
- .env
|
||||
depends_on:
|
||||
- authentik-postgresql
|
||||
- authentik-redis
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
# Documentation available at https://docs.goauthentik.io/docs/install-config/install/docker-compose
|
@@ -1,42 +0,0 @@
|
||||
---
|
||||
|
||||
# dockge
|
||||
# DESCRIPTION
|
||||
# APP_CREATOR_NAME
|
||||
# ↳ https://link.to.github
|
||||
# ↳ https://link.to.docs
|
||||
|
||||
services:
|
||||
dockge:
|
||||
image: louislam/dockge:latest
|
||||
container_name: dockge
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 5001:5001
|
||||
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- DOCKGE_STACKS_DIR=/opt/dockge/stacks
|
||||
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /opt/dockge/stacks:/opt/dockge/stacks
|
||||
- ./data:/app/data
|
||||
|
||||
# labels:
|
||||
# - 'enabled=true'
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
# ip_address: 127.0.0.1
|
||||
|
||||
# volumes:
|
||||
# unique_volume_name:
|
||||
# driver: local
|
@@ -1,31 +0,0 @@
|
||||
---
|
||||
|
||||
# Dozzle
|
||||
# Log viewer for Docker containers
|
||||
# amir20
|
||||
# ↳ https://github.com/amir20/dozzle
|
||||
# ↳ https://dozzle.dev/
|
||||
|
||||
services:
|
||||
dozzle:
|
||||
image: amir20/dozzle:latest
|
||||
container_name: dozzle
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 8080:8080
|
||||
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
@@ -1,34 +0,0 @@
|
||||
---
|
||||
|
||||
# EmulatorJS
|
||||
# Retro game emulation in the web browser
|
||||
# APP_CREATOR_NAME
|
||||
# ↳ https://link.to.github
|
||||
# ↳ https://link.to.docs
|
||||
|
||||
services:
|
||||
emulator-js:
|
||||
image: lscr.io/linuxserver/emulatorjs:latest
|
||||
container_name: emulator-js
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 80:80
|
||||
# - 3000:3000
|
||||
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/emulator-js/config:/config
|
||||
- /home/fxequals/docker/emulator-js/data:/data
|
||||
- /home/fxequals/docker/emulator-js/
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
@@ -1,33 +0,0 @@
|
||||
---
|
||||
|
||||
# FreshRSS
|
||||
# An RSS aggregator app
|
||||
# APP_CREATOR_NAME
|
||||
# ↳ https://github.com/FreshRSS/FreshRSS
|
||||
# ↳ https://freshrss.github.io/FreshRSS/en/admins/01_Index.html
|
||||
|
||||
services:
|
||||
fresh-rss:
|
||||
image: freshrss/freshrss:latest
|
||||
container_name: fresh-rss
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 80:80
|
||||
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- 'CRON_MIN=13,43' # Specifies Feed Update Time
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/fresh-rss/data:/var/www/FreshRSS/data
|
||||
- /home/fxequals/docker/fresh-rss/extensions:/var/www/FreshRss/extensions
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
@@ -1,31 +0,0 @@
|
||||
---
|
||||
|
||||
# Full Text RSS
|
||||
# Converts RSS articles into full text articles
|
||||
# heussd
|
||||
# ↳ https://link.to.github
|
||||
# ↳ https://link.to.docs
|
||||
|
||||
services:
|
||||
full-text-rss:
|
||||
image: heussd/fivefilters-full-text-rss:latest
|
||||
container_name: full-text-rss
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 80:80
|
||||
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/full-text-rss/cache:/var/www/html/cache
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
@@ -1,32 +0,0 @@
|
||||
---
|
||||
|
||||
# Gitea
|
||||
# A Github alternative
|
||||
# Gitea
|
||||
# ↳ https://github.com/go-gitea/gitea
|
||||
# ↳ https://docs.gitea.com/
|
||||
|
||||
services:
|
||||
gitea:
|
||||
image: gitea/gitea:latest
|
||||
container_name: gitea
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
ports:
|
||||
- 2222:22
|
||||
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/gitea:/data
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
@@ -1,24 +0,0 @@
|
||||
services:
|
||||
goaccess:
|
||||
image: xavierh/goaccess-for-nginxproxymanager:latest
|
||||
container_name: goaccess
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 7880:7880
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
HTML_REFRESH: 5
|
||||
EXCLUDE_IPS: 172.18.0.1
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/nginx/data/logs:/opt/log
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
# Documentation available at https://goaccess.io/man
|
@@ -1,24 +0,0 @@
|
||||
services:
|
||||
homepage:
|
||||
image: ghcr.io/gethomepage/homepage:latest
|
||||
container_name: homepage
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 3000:3000
|
||||
|
||||
#environment:
|
||||
# PUID: 1000
|
||||
# PGID: 1000
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/homepage/config:/app/config
|
||||
- /home/fxequals/docker/homepage/images:/app/public/images
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
# Documentation available at https://gethomepage.dev/
|
@@ -1,34 +0,0 @@
|
||||
---
|
||||
|
||||
# NGINX Proxy Manager
|
||||
# Reverse proxy for managing connections
|
||||
# jc21
|
||||
# ↳ https://link.to.github
|
||||
# ↳ https://link.to.docs
|
||||
|
||||
services:
|
||||
nginx:
|
||||
image: jc21/nginx-proxy-manager:latest
|
||||
container_name: nginx
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
ports:
|
||||
- 80:80
|
||||
- 443:443
|
||||
- 81:81
|
||||
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/nginx/data:/data
|
||||
- /home/fxequals/docker/nginx/letsencrypt:/etc/letsencrypt
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
@@ -1,19 +0,0 @@
|
||||
services:
|
||||
privatebin:
|
||||
image: privatebin/nginx-fpm-alpine:latest
|
||||
container_name: privatebin
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 8080:8080
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/privatebin/data:/srv/data
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
@@ -1,35 +0,0 @@
|
||||
---
|
||||
|
||||
# Remotely
|
||||
# Remote access to computers
|
||||
# immybot
|
||||
# ↳ https://github.com/immense/Remotely
|
||||
|
||||
services:
|
||||
remotely:
|
||||
image: immybot/remotely:latest
|
||||
container_name: remotely
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 80:80
|
||||
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- ASPNETCORE_ENVIRONMENT=Production
|
||||
- ASPNETCORE_HTTP_PORTS=5000
|
||||
- Remotely_ApplicationOptions__DbProvider=SQLite
|
||||
- Remotely_ApplicationOptions__DockerGateway=172.18.0.1
|
||||
- Remotely_ConnectionStrings__SQLite=Data Source=/app/AppData/Remotely.db
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/remotely/data:/app/AppData
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
@@ -1,30 +0,0 @@
|
||||
---
|
||||
|
||||
# sPDF
|
||||
# Various PDF tools
|
||||
# frooodle
|
||||
# ↳ https://github.com/Stirling-Tools/Stirling-PDF
|
||||
# ↳ https://stirlingpdf.io/
|
||||
|
||||
services:
|
||||
spdf:
|
||||
image: frooodle/s-pdf:latest
|
||||
container_name: spdf
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 8080:8080
|
||||
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
@@ -1,22 +0,0 @@
|
||||
services:
|
||||
uptime-kuma:
|
||||
image: louislam/uptime-kuma:latest
|
||||
container_name: uptime-kuma
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 3001:3001
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/uptime-kuma/data:/app/data
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
# Documentation available at https://github.com/louislam/uptime-kuma/wiki
|
@@ -1,30 +0,0 @@
|
||||
---
|
||||
|
||||
# Vaultwarden
|
||||
# A Rust implimentation of the Open Source Bitwarden app
|
||||
# dani-garcia
|
||||
# ↳ https://github.com/dani-garcia/vaultwarden
|
||||
# ↳ https://github.com/dani-garcia/vaultwarden/wiki
|
||||
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
container_name: vaultwarden
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 80:80
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/vaultwarden/data:/data
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
@@ -1,39 +0,0 @@
|
||||
---
|
||||
|
||||
# Watchtower
|
||||
# Docker Image Updater & Notifications
|
||||
# Created by containrrr
|
||||
# ↳ https://github.com/containrrr/watchtower
|
||||
|
||||
services:
|
||||
watchtower:
|
||||
image: containrrr/watchtower:latest
|
||||
container_name: watchtower
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
WATCHTOWER_MONITOR_ONLY: true
|
||||
WATCHTOWER_NOTIFICATIONS: email
|
||||
WATCHTOWER_NOTIFICATION_EMAIL_FROM: ${WATCHTOWER_NOTIFICATION_EMAIL_FROM}
|
||||
WATCHTOWER_NOTIFICATION_EMAIL_TO: ${WATCHTOWER_NOTIFICATION_EMAIL_TO}
|
||||
WATCHTOWER_NOTIFICATION_EMAIL_SERVER: ${WATCHTOWER_NOTIFICATION_EMAIL_SERVER}
|
||||
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT: ${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT}
|
||||
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER: ${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER}
|
||||
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD: ${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD}
|
||||
WATCHTOWER_NOTIFICATION_EMAIL_DELAY: 3
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
# Documentation available at https://containrrr.dev/watchtower/
|
@@ -1,57 +0,0 @@
|
||||
services:
|
||||
wordpress:
|
||||
image: docker.io/bitnami/wordpress:latest
|
||||
container_name: wordpress-server
|
||||
restart: unless-stopped
|
||||
depends_on:
|
||||
- wordpress-mariadb
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 80:80
|
||||
# - 443:443
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
WORDPRESS_DATABASE_HOST: wordpress-mariadb
|
||||
WORDPRESS_DATABASE_USER: ${DB_USER}
|
||||
WORDPRESS_DATABASE_PASSWORD: ${DB_PASS}
|
||||
WORDPRESS_DATABASE_PORT_NUMBER: 3306
|
||||
WORDPRESS_DATABASE_NAME: wordpress
|
||||
WORDPRESS_USERNAME: ${WP_USER}
|
||||
WORDPRESS_PASSWORD: ${WP_PASS}
|
||||
WORDPRESS_EMAIL: ${WP_EMAIL}
|
||||
WORDPRESS_FIRSTNAME: ${WP_FNAME}
|
||||
WORDPRESS_LASTNAME: ${WP_LNAME}
|
||||
# WORDPRESS_ENABLE_REVERSE_PROXY: yes
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/wordpress/data:/bitnami/wordpress
|
||||
wordpress-mariadb:
|
||||
image: docker.io/bitnami/mariadb:latest
|
||||
container_name: wordpress-mariadb
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 3306:3306
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
ALLOW_EMPTY_PASSWORD: no
|
||||
MARIADB_USER: ${DB_USER}
|
||||
MARIADB_PASSWORD: ${DB_PASS}
|
||||
MARIADB_DATABASE: wordpress
|
||||
MARIADB_ROOT_PASSWORD: ${DB_ROOT}
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/wordpress/database:/bitnami/mariadb
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
# Documentation available at https://wordpress.com/support/
|
Reference in New Issue
Block a user