Open the server Apps tab
Select your VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.


Flat-file note-taking app with markdown support
Add your server credentials to Server Compass
Choose from our template library
Fill in settings and click Deploy
Use the Flatnotes template in Server Compass to deploy a self-hosted self-hosted note-taking app with flat-file markdown storage on your VPS, then verify the Flatnotes web UI in a browser.
Select your VPS, open the Apps tab, and start a new app deployment. Keep sensitive server details hidden before capturing or sharing screenshots.

Click New App and choose the template deployment path so Server Compass can load the built-in catalog.

Use the template picker search to find Flatnotes in the Server Compass template catalog.

Choose the Flatnotes template. Server Compass fills the Flatnotes image, host port, generated login credentials, session secret, and persistent notes data volume.

Confirm the app name and compose services. In this run, the app was named flatnotes-demo and used host port 8080.

Review the generated environment values, confirm the port is available, and click Deploy Now.

Keep the deployment modal open while Server Compass uploads the compose file, pulls the Flatnotes image, starts the container, and verifies the stack.

After deployment finishes, return to the Apps tab and confirm the Flatnotes app is marked Running with its application URL available.

Open the application URL in a browser. The Flatnotes web UI confirms the site is reachable.

It deploys Flatnotes with a persistent data volume for markdown notes.
The tutorial used host port 8080, which maps to the Flatnotes web server on container port 80.
The tutorial verifies the clean first-run web UI because real notes, users, and access settings depend on the production server.
No. The deployment guide should live on the Flatnotes template detail page and be linked from the reusable template deployment docs page.
For terminal enthusiasts: deploy Flatnotes manually with these simple steps.
Begin by establishing a secure connection to your server through the terminal.
# Access your VPS
ssh root@YOUR_SERVER_IP
# With SSH key authentication
ssh -i ~/.ssh/your-private-key root@YOUR_SERVER_IPFirst time? Ensure Docker is installed first: curl -fsSL https://get.docker.com | sh
Create a dedicated folder for your application files.
# Create and navigate to project directory
mkdir -p ~/apps/flatnotes
cd ~/apps/flatnotesCreate the following docker-compose.yml in your project directory:
services:
flatnotes:
image: dullage/flatnotes:latest
ports:
- "8080:8080"
environment:
- FLATNOTES_AUTH_TYPE=password
- FLATNOTES_USERNAME=admin
- FLATNOTES_PASSWORD=<your-password>
- FLATNOTES_SECRET_KEY=<your-secret-key>
volumes:
- flatnotes_data:/data
restart: unless-stopped
volumes:
flatnotes_data:
PORTHost port(default: 8080)USERNAMEUsername(default: admin)PASSWORDPasswordSECRET_KEYSecret keyRun Docker Compose to launch your application.
# Launch the stack
docker compose up -d
# Verify container status
docker compose ps
# Follow the logs
docker compose logs --followConfigure UFW to allow traffic to your application.
# Allow the application port through firewall
sudo ufw allow 8080/tcp
sudo ufw reload
# Access your app at:
# http://your-server-ip:8080Deploy Flatnotes without touching the command line. Server Compass gives you a clean UI for one-click deployments.
After deploying Flatnotes with Server Compass, complete these steps to finish setup
Create your account
Start taking notes
Need help? Check out our documentation for detailed guides.
Common questions about self-hosting Flatnotes
Simply download Server Compass, connect to your VPS, and select Flatnotes from the templates list. Fill in the required configuration and click Deploy. The entire process takes under 3 minutes.
Flatnotes requires a minimum of 128MB RAM. We recommend a VPS with at least 1024MB RAM for optimal performance. Any modern Linux server with Docker support will work.
Yes! Server Compass provides volume mapping that allows you to import existing data. You can also use standard Flatnotes backup and restore procedures.
Server Compass makes updates easy. Simply click the Update button in your deployment dashboard, and the latest Flatnotes image will be pulled and deployed with zero downtime.
Flatnotes is open-source software. You only pay for your VPS hosting (typically $5-20/month) and optionally Server Compass ($29 one-time). No subscription fees or per-seat pricing.
Download Server Compass and deploy Flatnotes to your VPS in under 3 minutes. No Docker expertise required.
Download Server Compass