version: '3.7' services: {% include 'templates/docker-service-' + database_type + '.yml.j2' %} application: image: docker.io/akaunting/akaunting:{{version_akaunting}} build: context: . ports: - 127.0.0.1:{{http_port}}:80 volumes: - data:/var/www/html restart: unless-stopped env_file: - env/run.env environment: - AKAUNTING_SETUP {% include 'templates/docker-container-networks.yml.j2' %} {% include 'templates/docker-container-depends-on-just-database.yml.j2' %} {% include 'templates/docker-compose-volumes.yml.j2' %} data: {% include 'templates/docker-compose-networks.yml.j2' %}