Last Updated: 3/10/2026
Quick Start Guide
Get LinkAce running in under 5 minutes with Docker. This guide will have you saving and organizing bookmarks in no time.
What You’ll Need
- A server or computer with Docker installed (version 19 or greater)
- Docker Compose (supporting compose version 3 or later)
- Command-line access to your server
- 5 minutes of your time
Installation Steps
1. Download LinkAce
Download the Docker setup package from the LinkAce repository:
Extract the files to a directory on your server:
unzip linkace-docker.zip
cd linkaceYou should see these files:
linkace/
├── .env
├── docker-compose.yml
├── LICENSE.md
└── README.md2. Configure Security
Open the .env file and set secure passwords:
nano .envChange these two lines:
DB_PASSWORD=ChangeThisToASecurePassword!
REDIS_PASSWORD=ChangeThisToAnotherSecurePassword!Important: Use strong, unique passwords. These protect your database and cache.
3. Start LinkAce
Start the Docker containers:
docker compose up -dDocker will download the necessary images and start LinkAce. This takes 1-2 minutes on first run.
4. Complete Setup
Open your browser and navigate to:
- Local installation:
http://localhost - Server installation:
http://your-server-ip
You’ll see the LinkAce setup wizard. Follow the prompts to:
- Configure Database - The defaults are already set from your
.envfile - Create Admin Account - Enter your name, email, and password
- Finish Setup - Click “Complete Setup”
🎉 You’re done! You can now start saving bookmarks.
Essential Post-Setup Steps
To unlock LinkAce’s full potential, complete these quick configuration steps:
1. Set Up the Cron Job (Required)
The cron job enables:
- Automatic Wayback Machine backups
- Link monitoring and health checks
- Scheduled application backups
Get your cron URL:
- Click your username in the top-right corner
- Select “System Settings”
- Scroll to “System Cron” section
- Copy the cron URL shown
Add the cron job to your server:
crontab -eAdd this line (replace with your actual cron URL):
* * * * * curl -s https://your-linkace-url/cron/RUN-YOUR-TOKEN-HEREOr if curl isn’t available:
* * * * * wget -q -O /dev/null https://your-linkace-url/cron/RUN-YOUR-TOKEN-HEREFor Docker installations, you can also use:
* * * * * docker exec linkace-app-1 php artisan schedule:run >> /dev/null 2>&12. Install the Bookmarklet
The bookmarklet lets you save any webpage with one click:
- Click your username → “User Settings”
- Drag the Bookmarklet button to your browser’s bookmarks bar
- Visit any webpage and click the bookmarklet to save it
3. Configure Your Preferences
In “User Settings”, customize:
- Timezone - Set your local timezone for accurate timestamps
- Date/Time Format - Choose your preferred display format
- Privacy Defaults - Set whether new bookmarks are Private, Internal, or Public
- Wayback Machine - Enable automatic archiving of your bookmarks
- Dark Mode - Choose light, dark, or automatic theme
Your First Bookmark
Let’s save your first link:
- Click the ”+ New Link” button in the top menu
- Paste a URL (try:
https://github.com/Kovah/LinkAce) - LinkAce automatically fetches the title and description
- (Optional) Add to a List or add Tags
- Click “Save Link”
Pro tip: Leave the title and description blank - LinkAce will fill them automatically!
Quick Tips
Organizing with Lists and Tags
- Lists are like folders - use them for broad categories
- Example: “Web Development”, “Recipes”, “Articles to Read”
- Tags are like labels - use many per link for flexible organization
- Example: A link could have tags:
php,tutorial,laravel,backend
- Example: A link could have tags:
Privacy Levels Explained
- Private - Only you can see this bookmark
- Internal - All logged-in users can see it (great for teams)
- Public - Anyone can see it, even without logging in (if Guest Mode is enabled)
Using the Bookmarklet
The fastest way to save links:
- Visit any webpage
- Click the LinkAce bookmarklet in your bookmarks bar
- A popup appears with the link pre-filled
- Add tags/lists if desired, or just click Save
What’s Next?
Essential Reading
- Post-Installation Setup - Complete configuration guide
- Core Concepts - Understanding Links, Lists, and Tags
- Managing Your Links - Complete workflow guide
Advanced Features
- Backup Configuration - Set up automated backups
- User Management - Invite team members
- API Access - Integrate with other tools
- Import/Export - Migrate from other bookmark managers
Customization
- Environment Variables - Advanced configuration options
- Email Configuration - Set up email notifications
- SSO & OAuth - Enterprise authentication
Need Help?
If you run into issues:
- Check the Troubleshooting Guide
- Visit GitHub Discussions
- Review the complete documentation
Alternative Installation Methods
This guide covers the fastest Docker-based installation. If you need:
- Traditional PHP hosting - See Installation without Docker
- Cloud deployment - See One-Click Deployment
- Kubernetes - See Kubernetes Setup (Beta)
Welcome to LinkAce! Start saving, organizing, and preserving your bookmarks today. 🔖