← Alle Anleitungen
Akaunting
Akaunting is a free, open-source online accounting software for small businesses and freelancers, with an official Docker Compose setup that includes a guided web setup wizard.
Diese Anleitung basiert auf der offiziellen Dokumentation von Akaunting, oben verlinkt — überprüfe dort immer die genauen Paket-/Versionsnamen, bevor du diese Befehle auf einem Produktionsserver ausführst, da sich Distributions- und Projektversionen mit der Zeit ändern.
1Clone the official Docker repository
git clone https://github.com/akaunting/dockercd docker2Configure environment files
Edit env/db.env and env/run.env to set database credentials and runtime configuration before first launch.
cp env/db.env.example env/db.envcp env/run.env.example env/run.env3First launch with setup wizard enabled
AKAUNTING_SETUP=true docker-compose up -dAKAUNTING_SETUP=true must only be used for this initial run — remove it afterward.
4Finish setup and restart clean
Open port 8080 on the Docker host to complete the interactive company setup wizard, then restart without the setup flag.
docker-compose downdocker-compose up -d