A simple plant watering tracker - hosted with ONCE.
- 🌱 Manage plants with watering intervals
- 🚿 Daily overview of plants that need watering
- 📅 Calendar export (ICS) for reminders
- 💾 Data stored in browser (localStorage)
- 📱 PWA support (installable as app)
Pre-built multi-arch images (linux/amd64, linux/arm64) are published to GitHub Container Registry on every release:
docker pull ghcr.io/mjt91/iguss:latest
docker run -d -p 8080:80 --name iguss ghcr.io/mjt91/iguss:latest
# App available at: http://localhost:8080Pin to a specific version with ghcr.io/mjt91/iguss:1.0.1 (also :1.0, :1).
# Build image
docker build -t iguss .
# Run container
docker run -d -p 8080:80 --name iguss iguss
# App available at: http://localhost:8080# Start server
node server.js
# App available at: http://localhost:80This app runs with ONCE:
- Port:
80 - Healthcheck:
/up - Image:
ghcr.io/mjt91/iguss:latest
Each user has completely isolated data through browser localStorage. Data is not stored on the server.