
Deploy InvoicePlane on Your Own Server
InvoicePlane is a self-hosted open source application for managing your quotes, invoices, clients and payments.
Want to deploy InvoicePlane on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.
What is InvoicePlane?
InvoicePlane is a self-hosted open source application for managing invoices. See https://www.invoiceplane.com/. This one click app is based on: - woahbase/alpine-mysql image - thomascenni/alpine-invoiceplane, based on woahbase/alpine-php and the official InvoicePlane sources from their Github repository.
Self-Host InvoicePlane
Follow these steps to deploy on your own server.
Install Docker
Skip this step if Docker is already installed on your server.
curl -fsSL https://get.docker.com | sh
Configure
Customize the settings below. Defaults work for most cases.
General
Deploy
Copy the configuration and run it on your server.
services:
invoiceplane:
image: thomascenni/alpine-invoiceplane:v1.5.11
environment:
DB_DATABASE: invoiceplane
DB_HOSTNAME: invoiceplane-db
DB_PASSWORD: 32bb6e9c992e6760
DB_PORT: "3306"
DB_USERNAME: invoiceplane
IP_URL: http://invoiceplane.your-domain.com
volumes:
- invoiceplane-storage:/storage
- invoiceplane-config:/config
invoiceplane-db:
image: mysql:5.7.32
environment:
MYSQL_DATABASE: invoiceplane
MYSQL_PASSWORD: 32bb6e9c992e6760
MYSQL_ROOT_PASSWORD: f7f2716f2a3becf59615
MYSQL_USER: invoiceplane
volumes:
- invoiceplane-mysql-data:/var/lib/mysql
volumes:
invoiceplane-storage: {}
invoiceplane-config: {}
invoiceplane-mysql-data: {}
Then run:
docker compose up -d
Access
Once started, access your app at http://localhost:80
Why Self-Host InvoicePlane?
Full Data Ownership
Your data stays on your servers. No third-party access.
No Monthly Fees
Pay only for your server. No per-seat or usage charges.
Complete Control
Customize, backup, and scale on your own terms.
Privacy & Compliance
Meet GDPR, HIPAA, or internal security requirements.
Technical Details
Docker Image
thomascenni/alpine-invoiceplane:v1.5.11Want to go faster?
Try Senate! Senate handles Docker, HTTPS, updates, and monitoring for you. Deploy any of our 300+ apps with a single command.
Install on any Linux server:
sh -c "$(curl -sSL https://get.senate.sh)"