-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't install Akaunting through portainer #86
Comments
have same issue, maybe it is not okay for synology nas |
I am quite into the same issue, trying to deploy Akaunting and a MariaDB through Portainer, as a stack. I experience 2 different (and probably related) problems:
Looks like a database related issue, I didn't dig any further for now, but as soon as the front-end tries to reach the db, something goes wrong. I would appreciate a more clear installation section on the main repo that may include the Portainer (or anyways the "pure compose approach, not just the bare-metal way) scenario. Once running, I plan(ned) to set everything behind a reverse proxy, but am currently stuck here... Cheers! |
Quite sad to see that basically not a single issue had ever had any response, is the project still actively maintained? |
Hello,
I'm trying to install Akaunting through portainer using the following Docker composer.
the installation is going well and I can access the login portal but nothing happens afterwards.
You will find below the script used and the database log with the error message obtained.
Could you please advice me
`version: '3.7'
services:
akaunting:
container_name: akaunting
image: docker.io/akaunting/akaunting:latest
build:
context: .
ports:
- 8080:80
volumes:
- /volume2/docker/akaunting/data:/var/www/html/storage
- /volume2/docker/akaunting/modules:/var/www/html/modules
restart: unless-stopped
environment:
APP_URL: "http://192.168.1.13:8080"
LOCALE: "en-US"
DB_HOST: "akaunting-db"
DB_DATABASE: "akaunting"
DB_USERNAME: "admin"
DB_PASSWORD: "akaunting_password"
DB_PREFIX: "asd_"
COMPANY_NAME: "My Company"
COMPANY_EMAIL: "[email protected]"
ADMIN_EMAIL: "[email protected]"
ADMIN_PASSWORD: "password"
depends_on:
- akaunting-db
akaunting-db:
container_name: akaunting-db
image: mariadb
volumes:
- /volume2/docker/akaunting/db:/var/lib/mysql
environment:
MYSQL_DATABASE: akaunting
MYSQL_USER: admin
MYSQL_PASSWORD: akaunting_password
MYSQL_RANDOM_ROOT_PASSWORD: "yes"
restart: unless-stopped
`
The text was updated successfully, but these errors were encountered: