# Rsspub ## compose.yml ```yaml --- services: rsspub: image: harshit181/rsspub:latest container_name: rsspub restart: unless-stopped ports: - "8084:3000" volumes: - ./data:/app/data environment: - RSSPUB_USERNAME=admin - RSSPUB_PASSWORD=password healthcheck: test: ["CMD", "wget", "--spider", "-q", "http://localhost:3000"] interval: 30s timeout: 10s retries: 3 ```
