![renovate[bot]](/assets/img/avatar_default.png) 9f134ade34
			
		
	
	
		9f134ade34
		
			
		
	
	
	
	
		
			
			* chore(deps): update ghcr.io/ssddanbrown/rss docker tag to v1.3.0 * Update app version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			711 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			711 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: '3.7'
 | |
| 
 | |
| services:
 | |
|   rss:
 | |
|     image: ghcr.io/ssddanbrown/rss:v1.3.0
 | |
|     container_name: rss
 | |
|     environment:
 | |
|       - APP_NAME=Tipi-RSS
 | |
|       - APP_FEED_UPDATE_FREQUENCY=35
 | |
|       - APP_LOAD_POST_THUMBNAILS=true
 | |
|     volumes:
 | |
|       - ${APP_DATA_DIR}/data/storage:/app/storage
 | |
|     ports:
 | |
|       - '${APP_PORT}:80'
 | |
|     restart: unless-stopped
 | |
|     labels:
 | |
|       traefik.enable: ${APP_EXPOSED}
 | |
|       traefik.http.routers.rss.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.rss.entrypoints: websecure
 | |
|       traefik.http.routers.rss.service: rss
 | |
|       traefik.http.routers.rss.tls.certresolver: myresolver
 | |
|       traefik.http.services.rss.loadbalancer.server.port: 80
 | |
|     networks:
 | |
|       - tipi_main_network
 |