Quick Start
Welcome to AMMDS! Follow this guide to deploy AMMDS using Windows, FnOS, QNAP, or Docker.
🚀 Deployment Methods
Windows Deployment
Package Type: EXE Setup
For Windows users, we provide a simple setup package:
- Download the latest
ammds-setup.exefrom the AMMDS Launcher releases page - Locate the downloaded
ammds-setup.exefile - Right-click and select Run as administrator
- Follow the installation wizard step by step
- After installation, the service will start automatically
FnOS Deployment
Package Type: FPK (FnOS Package)
For FnOS users, we provide an FPK package that can be directly imported into the FnOS App Store:
- Download the latest
AMMDS-Offline-FnNas.fpkfrom the FnOS releases page - Log into your FnOS management interface
- Open the FnOS App Store
- Select Import Local Package and locate the downloaded FPK file
- Follow the prompts to complete installation
- You can manage the service in the FnOS App Store afterwards
QNAP Deployment
Package Type: QKPG (QNAP Package)
For QNAP users, we provide a QKPG package that can be directly imported into the QNAP App Store:
- Download the latest
AMMDS_x86.qkpgorAMMDS_arm.qkpgfrom the QNAP releases page - Log into your QNAP management interface
- Open the QNAP App Store
- Select Import Local Package and locate the downloaded QKPG file
- Follow the prompts to complete installation
- You can manage the service in the QNAP App Store afterwards
Docker Deployment
Package Type: Docker Image
Already have Docker installed? Deploy AMMDS with a single command:
docker run -itd \
--name AMMDS \
-p 8080:80 \
-v $(pwd)/data:/ammds/data \
-v $(pwd)/db:/ammds/db \
--restart always \
qyg2297248353/ammds:latest
Command Parameters
| Option | Description |
|---|---|
-itd | Run container in the background, doesn't occupy your terminal |
--name AMMDS | Name the container "AMMDS" for easy management |
-p 8080:80 | Map local port 8080 to container port 80 (web interface) |
-v $(pwd)/data:/ammds/data | Store data locally so it's not lost when the container is deleted |
-v $(pwd)/db:/ammds/db | Store the database locally so it's not lost when the container is deleted |
--restart always | Auto-restart the container if it crashes unexpectedly |
qyg2297248353/ammds:latest | Use the latest AMMDS Docker image |
🌐 Accessing the Service
After deployment, open your browser to access AMMDS:
- Open your preferred browser
- Go to
http://localhost:8080(if remote, replacelocalhostwith your server's IP) - You'll see the AMMDS login page
📝 Default Credentials
| Credential | Default Value |
|---|---|
| Username | ammds |
| Password | ammds |
💡 First Login Tips
If the login page doesn't appear immediately, don't worry. The system may be downloading and initializing resources in the background. Depending on your network speed, this may take a few minutes.
- After logging in, change the default password in Settings immediately
- Browse around the main interface to get familiar with AMMDS features
- Check the system status in the bottom right corner to make sure all services are running
📋 Next Steps
- Check the Docs: Review the Introduction for detailed instructions
- Adjust Settings: Customize your preferences in the Settings menu
- Add Media Sources: Connect your media library and start using AMMDS
- Explore Features: Try out various tools and features available
Enjoy using AMMDS! 🎉