{"id":28546427,"url":"https://github.com/akaunting/docker","last_synced_at":"2025-07-07T06:31:35.220Z","repository":{"id":31844376,"uuid":"122336826","full_name":"akaunting/docker","owner":"akaunting","description":"Docker Image for Akaunting","archived":false,"fork":false,"pushed_at":"2024-06-09T14:16:58.000Z","size":96,"stargazers_count":210,"open_issues_count":29,"forks_count":106,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-06-30T05:58:55.588Z","etag":null,"topics":["akaunting","docker"],"latest_commit_sha":null,"homepage":"https://github.com/akaunting/akaunting","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/akaunting.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-02-21T13:00:43.000Z","updated_at":"2025-06-27T15:57:34.000Z","dependencies_parsed_at":"2023-11-21T10:43:02.887Z","dependency_job_id":null,"html_url":"https://github.com/akaunting/docker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/akaunting/docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akaunting%2Fdocker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akaunting%2Fdocker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akaunting%2Fdocker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akaunting%2Fdocker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/akaunting","download_url":"https://codeload.github.com/akaunting/docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/akaunting%2Fdocker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264027585,"owners_count":23546102,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["akaunting","docker"],"created_at":"2025-06-09T23:39:26.511Z","updated_at":"2025-07-07T06:31:35.208Z","avatar_url":"https://github.com/akaunting.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Akaunting Docker Image\n\nYou can pull the latest image with `docker pull docker.io/akaunting/akaunting:latest`\n\n## Description\n\nThis repository defines how the official Akaunting images are built for Docker Hub.\n\nAkaunting is online, open source and free accounting software built with modern technologies. Track your income and expenses with ease. For more information on Akaunting, please visit the [website](https://akaunting.com).\n\n## Usage\n\n```shell\ngit clone https://github.com/akaunting/docker\ncd docker\ncp env/db.env.example env/db.env\nvi env/db.env # and set things\ncp env/run.env.example env/run.env\nvi env/run.env # and set things\n\nAKAUNTING_SETUP=true docker-compose up -d\n```\n\nThen head to HTTP at port 8080 on the docker-compose host and finish configuring your Akaunting company through the interactive wizard.\n\nAfter setup is complete, bring the containers down before bringing them back up without the setup variable.\n\n```shell\ndocker-compose down\ndocker-compose up -d\n```\n\n\u003e Please never use `AKAUNTING_SETUP=true` environment variable again after the first time use.\n\nIf you have a database cluster you can take advantage of the following environment variables:\n\n```\n# In env/run.env put:\nDB_HOST_WRITE: \"example-write\"\nDB_HOST_READ: \"example-read\"\n```\n\nYou can use Redis with Akaunting for performance enhancement and scalability, if you have a Redis you can take advantage of the following environment variables:\n\n```\n# In env/run.env put:\nREDIS_HOST: \"example-redis\"\n# Switch cache driver to redis\nCACHE_DRIVER: \"redis\"\n# Switch session driver to redis\nSESSION_DRIVER: \"redis\"\n# Switch queue driver to redis\nQUEUE_CONNECTION: \"redis\"\n```\n\n## Extra ways to explore containerized Akaunting!\nThis repository contains extra compose and other files that allows you to run Akaunting in different setups like using FPM and NGINX and here is the most important commands that you may need:\n\n```shell\n# Run Akaunting setup that checks for volume files before copying them.\nAKAUNTING_SETUP=true docker-compose -f v-docker-compose.yml up --build\n\n# Run Akaunting with FPM on Debian and use Nginx as external proxy\nAKAUNTING_SETUP=true docker-compose -f fpm-docker-compose.yml up --build\n\n# Run Akaunting using FPM on Alpine and using Nginx as external proxy\nAKAUNTING_SETUP=true docker-compose -f fpm-docker-compose.yml -f fpm-alpine-docker-compose.yml up --build\n\n# Run Akaunting using FPM on Alpine and using Nginx as internal proxy\nAKAUNTING_SETUP=true docker-compose -f fpm-alpine-nginx-docker-compose.yml up --build\n\n# Download Akaunting using git and install composer and npm and run Akaunting using FPM on Alpine and using Nginx as internal proxy\nAKAUNTING_SETUP=true docker-compose -f fpm-alpine-nginx-docker-compose.yml -f fpm-alpine-nginx-composer-docker-compose.yml up --build\n\n# Download Akaunting using git and install composer and npm and run Akaunting using FPM on Alpine and using Nginx as internal proxy and supervisor to manage the queues\nAKAUNTING_SETUP=true docker-compose -f fpm-alpine-nginx-docker-compose.yml -f fpm-alpine-nginx-composer-supervisor-docker-compose.yml up --build\n```\n\n## License\n\nAkaunting is released under the [GPLv3 license](LICENSE.txt).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakaunting%2Fdocker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fakaunting%2Fdocker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fakaunting%2Fdocker/lists"}