2023-12-30 15:22:18 +01:00
|
|
|
version: '3.7'
|
|
|
|
|
|
|
|
services:
|
2024-01-02 21:13:34 +01:00
|
|
|
|
2024-01-03 15:46:28 +01:00
|
|
|
{% include 'templates/docker-service-' + database_type + '.yml.j2' %}
|
2024-01-02 21:13:34 +01:00
|
|
|
|
2023-12-30 15:22:18 +01:00
|
|
|
application:
|
|
|
|
image: docker.io/akaunting/akaunting:{{version_akaunting}}
|
|
|
|
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-02 21:39:17 +01:00
|
|
|
{% include 'templates/docker-container-networks.yml.j2' %}
|
2024-01-03 11:38:09 +01:00
|
|
|
{% include 'templates/docker-container-depends-on-just-database.yml.j2' %}
|
2023-12-30 15:22:18 +01:00
|
|
|
|
2024-01-02 21:39:17 +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-02 21:39:17 +01:00
|
|
|
{% include 'templates/docker-compose-networks.yml.j2' %}
|