Updated folder structure
This commit is contained in:
		
							
								
								
									
										2
									
								
								yamls/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								yamls/README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,2 @@ | ||||
| # homelab | ||||
| These yaml files use stack.env variable files, which allows them to be executed from Portainer.  | ||||
							
								
								
									
										14
									
								
								yamls/ddns-cloudflare.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								yamls/ddns-cloudflare.yaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| version: '2' | ||||
| services: | ||||
|   cloudflare-ddns: | ||||
|     container_name: ddns-cloudflare | ||||
|     image: oznu/cloudflare-ddns:latest | ||||
|     restart: always | ||||
|     env_file: | ||||
|       - stack.env | ||||
|     environment: | ||||
|       - API_KEY=${CLOUDFLARE_API} | ||||
|       - ZONE=${ZONE} | ||||
|       - PROXIED=true | ||||
|       - PUID=1000 | ||||
|       - PGID=1000 | ||||
							
								
								
									
										15
									
								
								yamls/heimdall.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								yamls/heimdall.yaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,15 @@ | ||||
| version: "2.1" | ||||
| services: | ||||
|   heimdall: | ||||
|     image: lscr.io/linuxserver/heimdall:latest | ||||
|     container_name: heimdall | ||||
|     environment: | ||||
|       - PUID=1000 | ||||
|       - PGID=1000 | ||||
|       - TZ=Europe/Warsaw | ||||
|     volumes: | ||||
|       - /home/mbuz/docker/heimdall/config:/config | ||||
|     ports: | ||||
|       - 80:80 | ||||
|       - 443:443 | ||||
|     restart: unless-stopped | ||||
							
								
								
									
										98
									
								
								yamls/immich.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										98
									
								
								yamls/immich.yaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,98 @@ | ||||
| version: "3.8" | ||||
|  | ||||
| services: | ||||
|   immich-server: | ||||
|     container_name: immich_server | ||||
|     image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} | ||||
|     command: [ "start.sh", "immich" ] | ||||
|     volumes: | ||||
|       - ${UPLOAD_LOCATION}:/usr/src/app/upload | ||||
|     env_file: | ||||
|       - .env | ||||
|     depends_on: | ||||
|       - redis | ||||
|       - database | ||||
|       - typesense | ||||
|     restart: always | ||||
|  | ||||
|   immich-microservices: | ||||
|     container_name: immich_microservices | ||||
|     image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} | ||||
|     # extends: | ||||
|     #   file: hwaccel.yml | ||||
|     #   service: hwaccel | ||||
|     command: [ "start.sh", "microservices" ] | ||||
|     volumes: | ||||
|       - ${UPLOAD_LOCATION}:/usr/src/app/upload | ||||
|     env_file: | ||||
|       - .env | ||||
|     depends_on: | ||||
|       - redis | ||||
|       - database | ||||
|       - typesense | ||||
|     restart: always | ||||
|  | ||||
|   immich-machine-learning: | ||||
|     container_name: immich_machine_learning | ||||
|     image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} | ||||
|     volumes: | ||||
|       - model-cache:/cache | ||||
|     env_file: | ||||
|       - .env | ||||
|     restart: always | ||||
|  | ||||
|   immich-web: | ||||
|     container_name: immich_web | ||||
|     image: ghcr.io/immich-app/immich-web:${IMMICH_VERSION:-release} | ||||
|     env_file: | ||||
|       - .env | ||||
|     restart: always | ||||
|  | ||||
|   typesense: | ||||
|     container_name: immich_typesense | ||||
|     image: typesense/typesense:0.24.1@sha256:9bcff2b829f12074426ca044b56160ca9d777a0c488303469143dd9f8259d4dd | ||||
|     environment: | ||||
|       - TYPESENSE_API_KEY=${TYPESENSE_API_KEY} | ||||
|       - TYPESENSE_DATA_DIR=/data | ||||
|       # remove this to get debug messages | ||||
|       - GLOG_minloglevel=1 | ||||
|     volumes: | ||||
|       - tsdata:/data | ||||
|     restart: always | ||||
|  | ||||
|   redis: | ||||
|     container_name: immich_redis | ||||
|     image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3 | ||||
|     restart: always | ||||
|  | ||||
|   database: | ||||
|     container_name: immich_postgres | ||||
|     image: postgres:14-alpine@sha256:28407a9961e76f2d285dc6991e8e48893503cc3836a4755bbc2d40bcc272a441 | ||||
|     env_file: | ||||
|       - .env | ||||
|     environment: | ||||
|       POSTGRES_PASSWORD: ${DB_PASSWORD} | ||||
|       POSTGRES_USER: ${DB_USERNAME} | ||||
|       POSTGRES_DB: ${DB_DATABASE_NAME} | ||||
|     volumes: | ||||
|       - pgdata:/var/lib/postgresql/data | ||||
|     restart: always | ||||
|  | ||||
|   immich-proxy: | ||||
|     container_name: immich_proxy | ||||
|     image: ghcr.io/immich-app/immich-proxy:${IMMICH_VERSION:-release} | ||||
|     environment: | ||||
|       # Make sure these values get passed through from the env file | ||||
|       - IMMICH_SERVER_URL | ||||
|       - IMMICH_WEB_URL | ||||
|     ports: | ||||
|       - 2283:8080 | ||||
|     depends_on: | ||||
|       - immich-server | ||||
|       - immich-web | ||||
|     restart: always | ||||
|  | ||||
| volumes: | ||||
|   pgdata: | ||||
|   model-cache: | ||||
|   tsdata: | ||||
							
								
								
									
										48
									
								
								yamls/nextcloud.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										48
									
								
								yamls/nextcloud.yaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,48 @@ | ||||
| version: '3.3' | ||||
| services: | ||||
|  nextcloud: | ||||
|     image: lscr.io/linuxserver/nextcloud:latest | ||||
|     container_name: nextcloud | ||||
|     env_file: | ||||
|       - stack.env | ||||
|     environment: | ||||
|       - PUID=1000 | ||||
|       - PGID=1000 | ||||
|       - PHP_MEMORY_LIMIT=${PHP_MEMORY_LIMIT} | ||||
|       - PHP_UPLOAD_LIMIT=${PHP_UPLOAD_LIMIT} | ||||
|       - TZ=${TZ} | ||||
|  | ||||
|     volumes: | ||||
|       - ${CONFIG}:/config | ||||
|       - ${DATA}:/data | ||||
|     ports: | ||||
|       - 5443:443 | ||||
|     restart: unless-stopped | ||||
|     links: | ||||
|       - nextcloud-mariadb | ||||
|     depends_on: | ||||
|       - nextcloud-mariadb | ||||
|      | ||||
|  nextcloud-mariadb: | ||||
|     image: lscr.io/linuxserver/mariadb:latest | ||||
|     container_name: nextloud-mariadb | ||||
|     environment: | ||||
|       - PUID=1000 | ||||
|       - PGID=1000 | ||||
|       - TZ=${TZ} | ||||
|       - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD} | ||||
|       - MYSQL_DATABASE=nextcloud | ||||
|       - MYSQL_USER=nextcloud | ||||
|       - MYSQL_PASSWORD=${MYSQL_PASSWORD} | ||||
|  | ||||
|     volumes: | ||||
|       - ${MARIADB}:/config | ||||
|     ports: | ||||
|       - 5306:3306 | ||||
|     restart: unless-stopped | ||||
|  | ||||
|      | ||||
| networks: | ||||
|   default: | ||||
|     name: nextcloud | ||||
|     driver: bridge | ||||
							
								
								
									
										14
									
								
								yamls/nginx-proxy.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								yamls/nginx-proxy.yaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| version: '3.8' | ||||
| services: | ||||
|   app: | ||||
|     image: jc21/nginx-proxy-manager:latest | ||||
|     restart: unless-stopped | ||||
|     env_file: | ||||
|       - stack.env | ||||
|     ports: | ||||
|       - 1080:80 | ||||
|       - 1081:81 | ||||
|       - 10443:443 | ||||
|     volumes: | ||||
|       - ${NGINX_DATA}:/data | ||||
|       - ${NGINX_LETSENCRYPT}:/etc/letsencrypt | ||||
							
								
								
									
										14
									
								
								yamls/portainer.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								yamls/portainer.yaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,14 @@ | ||||
| version: "3" | ||||
| services: | ||||
|   portainer: | ||||
|     image: portainer/portainer-ce:latest | ||||
|     ports: | ||||
|       - 9443:9443     | ||||
|     env_file: | ||||
|       - stack.env     | ||||
|     volumes: | ||||
|         - ${PORTAINER_DATA}:/data | ||||
|         - /var/run/docker.sock:/var/run/docker.sock | ||||
|     restart: unless-stopped | ||||
| volumes: | ||||
|   data: | ||||
							
								
								
									
										21
									
								
								yamls/webtop.yaml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								yamls/webtop.yaml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | ||||
| version: "2.1" | ||||
| services: | ||||
|   webtop: | ||||
|     image: lscr.io/linuxserver/webtop:debian-mate | ||||
|     container_name: webtop | ||||
|     env_file: | ||||
|       - stack.env      | ||||
|     environment: | ||||
|       - PUID=1000 | ||||
|       - PGID=1000 | ||||
|       - TZ=Europe/Warsaw | ||||
| #      - CUSTOM_USER=user | ||||
| #      - PASSWORD=password | ||||
|     volumes: | ||||
|       - /home/mbuz/docker/webtop:/config | ||||
|     ports: | ||||
|       - 3000:3000 | ||||
|     devices: | ||||
|       - /dev/dri:/dev/dri #optional | ||||
|     shm_size: "2gb" #optional | ||||
|     restart: unless-stopped | ||||
		Reference in New Issue
	
	Block a user
	 Max Buz
					Max Buz