2023-05-29 13:03:57 +02:00
|
|
|
services:
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/services/redis.yml.j2' %}
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2025-02-04 18:14:37 +01:00
|
|
|
{% include 'roles/docker-central-database/templates/services/' + database_type + '.yml.j2' %}
|
2024-01-03 11:38:09 +01:00
|
|
|
|
2023-05-29 13:03:57 +02:00
|
|
|
web:
|
2025-02-03 11:44:13 +01:00
|
|
|
image: "attendize_web:{{applications.attendize.version}}"
|
2023-05-29 13:03:57 +02:00
|
|
|
ports:
|
|
|
|
- "{{http_port}}:80"
|
|
|
|
volumes:
|
|
|
|
- .:/usr/share/nginx/html
|
|
|
|
- .:/var/www
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
|
2024-01-02 21:13:34 +01:00
|
|
|
maildev:
|
|
|
|
worker:
|
2023-05-29 13:03:57 +02:00
|
|
|
env_file:
|
|
|
|
- ./.env
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
2024-01-02 21:13:34 +01:00
|
|
|
|
2023-05-29 13:03:57 +02:00
|
|
|
worker:
|
2025-02-03 11:44:13 +01:00
|
|
|
image: "attendize_worker:{{applications.attendize.version}}"
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/container/depends-on-database-redis.yml.j2' %}
|
2024-01-02 21:13:34 +01:00
|
|
|
maildev:
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
2023-05-29 13:03:57 +02:00
|
|
|
volumes:
|
|
|
|
- .:/usr/share/nginx/html
|
|
|
|
- .:/var/www
|
2023-12-26 03:13:16 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/volumes.yml.j2' %}
|
2023-12-31 11:14:18 +01:00
|
|
|
redis:
|
2024-01-02 21:13:34 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/networks.yml.j2' %}
|