MirrorNest
← Tutte le guide

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.

Sistema: Any Docker hostBusinessSito ufficiale ↗Documentazione ufficiale ↗
Questa guida è redatta a partire dalla documentazione ufficiale di Akaunting, linkata sopra — verifica sempre lì i nomi esatti di pacchetti/versioni prima di eseguire questi comandi su un server di produzione, poiché le versioni della distribuzione e del progetto cambiano nel tempo.
  1. 1Clone the official Docker repository

    git clone https://github.com/akaunting/docker
    cd docker
  2. 2Configure 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.env
    cp env/run.env.example env/run.env
  3. 3First launch with setup wizard enabled

    AKAUNTING_SETUP=true docker-compose up -d

    AKAUNTING_SETUP=true must only be used for this initial run — remove it afterward.

  4. 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 down
    docker-compose up -d