2023-12-30 15:22:18 +01:00
|
|
|
services:
|
2024-01-02 21:13:34 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
|
2024-01-02 21:13:34 +01:00
|
|
|
|
2023-12-30 15:22:18 +01:00
|
|
|
application:
|
2024-01-22 18:53:35 +01:00
|
|
|
image: docker.io/akaunting/akaunting:{{akaunting_version}}
|
2023-12-30 15:22:18 +01:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
ports:
|
|
|
|
- 127.0.0.1:{{http_port}}:80
|
|
|
|
volumes:
|
|
|
|
- data:/var/www/html
|
2024-01-12 20:57:58 +01:00
|
|
|
restart: {{docker_restart_policy}}
|
2023-12-30 15:22:18 +01:00
|
|
|
env_file:
|
|
|
|
- env/run.env
|
|
|
|
environment:
|
|
|
|
- AKAUNTING_SETUP
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
|
|
|
{% include 'templates/docker/container/depends-on-just-database.yml.j2' %}
|
2023-12-30 15:22:18 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/volumes.yml.j2' %}
|
2023-12-30 15:22:18 +01:00
|
|
|
data:
|
2024-01-02 21:13:34 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/networks.yml.j2' %}
|