ACNH-Forecast is a containerized tool that predicts in-game weather patterns for Animal Crossing: New Horizons using your game’s seed values.
- Accurate in-game weather predictions
- Simple web-based interface
- Based on the MeteoNook project and forks
- Linux: Official Guide
- Windows/macOS: Docker Desktop
git clone https://github.com/Rfkgaming89/ACNH-Forecast.git
cd ACNH-Forecastdocker build -t acnh-forecast .docker run -d -p 3334:80 -v $(pwd):/app --name acnh-forecast-app acnh-forecastNote: Replace
localhostwith your server’s IP if running remotely.
- Local: http://localhost:3334
- Remote:
http://your-server-ip:3334
If you do not want to build locally, you can pull the prebuilt image:
docker pull rfkgaming89/acnh-forecastRun with:
docker run -d -p 3334:80 --name acnh-forecast-app rfkgaming89/acnh-forecast- Open the Apps tab in Unraid.
- Search for ACNH-Forecast.
- Install the container.
Default settings:
- Port:
3334(mapped to container port80) - AppData Path:
/mnt/user/appdata/acnh-forecast
Access the app at: http://[SERVER-IP]:3334
- Check running containers:
docker ps
- Stop container:
docker stop acnh-forecast-app
- Restart container:
docker start acnh-forecast-app
- View logs:
docker logs acnh-forecast-app
- Enable auto-restart on boot:
docker update --restart unless-stopped acnh-forecast-app
- Stop the container:
docker stop acnh-forecast-app
- Rebuild the image:
docker build -t acnh-forecast . - Restart the container:
docker start acnh-forecast-app
- Stop and remove the container:
docker stop acnh-forecast-app && docker rm acnh-forecast-app - Pull the latest image:
docker pull rfkgaming89/acnh-forecast
- Re-run with your preferred settings.
This project follows the license of the original MeteoNook repositories.
See LICENSE