 1cc62c2202
			
		
	
	
		1cc62c2202
		
			
		
	
	
	
	
		
			
			* Add the extra config to the first 50 apps and modify tests, * Add arch to extra 55 apps. * Fix tests error. * Fix tests (again). * Andd the last 77 apps. * Change photoprism from latest to a version. * Fixes. * Drop arm support for peppermint. --------- Co-authored-by: JigSaw <JigSawFr@users.noreply.github.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.7"
 | |
| services:
 | |
|   libreddit:
 | |
|     container_name: libreddit
 | |
|     image: libreddit/libreddit:latest-arm
 | |
|     dns:
 | |
|       - ${DNS_IP}
 | |
|     ports:
 | |
|       - ${APP_PORT}:8080
 | |
|     restart: unless-stopped
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       # Main
 | |
|       traefik.enable: true
 | |
|       traefik.http.middlewares.libreddit-web-redirect.redirectscheme.scheme: https
 | |
|       traefik.http.services.libreddit.loadbalancer.server.port: 8080
 | |
|       # Web
 | |
|       traefik.http.routers.libreddit-insecure.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.libreddit-insecure.entrypoints: web
 | |
|       traefik.http.routers.libreddit-insecure.service: libreddit
 | |
|       traefik.http.routers.libreddit-insecure.middlewares: libreddit-web-redirect
 | |
|       # Websecure
 | |
|       traefik.http.routers.libreddit.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.libreddit.entrypoints: websecure
 | |
|       traefik.http.routers.libreddit.service: libreddit
 | |
|       traefik.http.routers.libreddit.tls.certresolver: myresolver
 | |
|       # Local domain
 | |
|       traefik.http.routers.libreddit-local-insecure.rule: Host(`libreddit.${LOCAL_DOMAIN}`)
 | |
|       traefik.http.routers.libreddit-local-insecure.entrypoints: web
 | |
|       traefik.http.routers.libreddit-local-insecure.service: libreddit
 | |
|       traefik.http.routers.libreddit-local-insecure.middlewares: libreddit-web-redirect
 | |
|       # Local domain secure
 | |
|       traefik.http.routers.libreddit-local.rule: Host(`libreddit.${LOCAL_DOMAIN}`)
 | |
|       traefik.http.routers.libreddit-local.entrypoints: websecure
 | |
|       traefik.http.routers.libreddit-local.service: libreddit
 | |
|       traefik.http.routers.libreddit-local.tls: true
 |