mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
26 lines
649 B
Django/Jinja
26 lines
649 B
Django/Jinja
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' %} |