This setup uses Docker and Docker Compose. If you do not have Docker yet, see Docker Setup and Docker Compose.
Create a docker-compose.yml file:
services:
db:
image: mariadb:11
environment:
MYSQL_DATABASE: akaunting
MYSQL_USER: akaunting
MYSQL_PASSWORD: change-me
MYSQL_ROOT_PASSWORD: change-me
volumes:
- db_data:/var/lib/mysql
app:
image: akaunting/akaunting:latest
environment:
DB_HOST: db
DB_DATABASE: akaunting
DB_USERNAME: akaunting
DB_PASSWORD: change-me
APP_URL: http://localhost:8080
ports:
- "8080:80"
depends_on:
- db
volumes:
db_data:
Start the stack:
docker compose up -d
Then open http://localhost:8080 and finish the web installer.
💼 Professional Services: Need expert help with your Akaunting Docker deployment? We offer consulting, training, and support. Contact our team →