mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 06:51:04 +01:00
33 lines
749 B
Django/Jinja
33 lines
749 B
Django/Jinja
version: '3.8'
|
|
services:
|
|
application:
|
|
logging:
|
|
driver: journald
|
|
options:
|
|
tag: "mybb_application"
|
|
image: mybb/mybb:latest
|
|
restart: always
|
|
volumes:
|
|
- data:/var/www/html
|
|
{% if not enable_central_database %}
|
|
depends_on:
|
|
- database
|
|
{% endif %}
|
|
server:
|
|
logging:
|
|
driver: journald
|
|
options:
|
|
tag: "mybb_server"
|
|
image: nginx:mainline
|
|
restart: always
|
|
ports:
|
|
- "127.0.0.1:{{http_port}}:80"
|
|
volumes:
|
|
- "{{docker_compose_instance_confd_directory}}:{{target_mount_conf_d_directory}}:ro"
|
|
- "data:/var/www/html:ro"
|
|
|
|
{% include 'templates/docker-{{ database_type }}-service.yml.j2' %}
|
|
|
|
volumes:
|
|
{% include 'templates/docker-database-volume.yml.j2' %}
|
|
data: |