mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-10-31 18:23:12 +01:00
24 lines
645 B
Django/Jinja
24 lines
645 B
Django/Jinja
services:
|
|
|
|
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
|
|
|
|
application:
|
|
image: docker.io/akaunting/akaunting:{{akaunting_version}}
|
|
build:
|
|
context: .
|
|
ports:
|
|
- 127.0.0.1:{{http_port}}:80
|
|
volumes:
|
|
- data:/var/www/html
|
|
restart: {{docker_restart_policy}}
|
|
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' %} |