How to deploy Fusion RSS Reader on Coolify
Here is how I set up Fusion RSS reader on my Coolify:
(This assumes you already have Coolify installed, otherwise refer to the installation docs)
- Log on to your Coolify dashboard
- Add a project
- select production environment
- Add new Resource
- Select “Docker Compose Empty”
- Add Docker Compose config:
version: '3'
services:
fusion:
image: 'rook1e404/fusion:latest'
ports:
- '127.0.0.1:3000:8080'
environment:
# Password for the frontend (login)
- PASSWORD=A_STRONG_PASSWORD
# which path should be served on the fully qualified domain name?
- SERVICE_FQDN_FUSION=/
# which port (must map to the services.fusion.ports property)
- SERVICE_FQDN_FUSION_3000
restart: unless-stopped
volumes:
- './data:/data'
- click “Deploy”
- When deployed, the Services section should show the generated subdomain
<appname>.sslip.io
Et voilà – you’ve got yourself a fusion instance deployed: