Akaunting

Currently reading
Akaunting

I contacted the author on github and got the manual.

# start containers (without persistant storage on bridge network)
docker run -d \
--name=akauntingtmp \
--net=bridge \
-e PUID=1000 \
-e PGID=1000 \
-e TZ=Australia/Melbourne \
-p 443:443 \
-p 80:80 \
--restart unless-stopped \
vcxpz/akaunting

docker run -d \
--name=mariadbtmp \
--net=bridge \
-e TZ="Australia/Sydney" \
-p 3306:3306 \
-e MYSQL_ROOT_PASSWORD=password \
-e PUID=99 \
-e PGID=100 \
vcxpz/mariadb

# mysql setup
docker exec -it mariadbtmp bash

mysql -uroot -ppassword

CREATE DATABASE Akaunting;
CREATE USER 'akaunting'@'%' IDENTIFIED BY 'akaunting';GRANT USAGE ON *.* TO 'akaunting'@'%' REQUIRE NONE WITH MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0;
GRANT ALL PRIVILEGES ON `Akaunting`.* TO 'akaunting'@'%';

# akaunting setup
docker exec -it akauntingtmp bash

cd /config/www/akaunting/
php artisan install \
--db-host="127.0.0.1" \
--db-name="Akaunting" \
--db-username="akaunting" \
--db-password="akaunting" \
--db-prefix="wal_" \
--company-name="Apple" \
--company-email="[email protected]" \
--admin-email="[email protected]" \
--admin-password="AdMinW3BuiPassword" \
--locale="en-AU"
 
So, when you rebuild the container, you have to go through the setup process again.
This would imply (at least to me) there's something corrupted in your /volume1/docker/akaunting folder.
 
Maybe yes maybe no. The other containers in this folder (volume1\docker) work fine. For Akauting tests, I set read and write rights for everyone, but that didn't help.
 
What would be the difference between using Akaunting vs Firefly-iii? My understanding is that firefly is based off Akaunting. Any other features that warrant choosing Akaunting over Firefly? Just curious
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Welcome to SynoForum.com!

SynoForum.com is an unofficial Synology forum for NAS owners and enthusiasts.

Registration is free, easy and fast!

Back
Top