27 lines
776 B
Plaintext
Raw Normal View History

services:
2024-01-08 19:59:58 +01:00
{% include 'roles/docker-central-database/templates/services/' + database_type + '.yml.j2' %}
2024-01-08 19:59:58 +01:00
application:
{% include 'roles/docker-compose/templates/services/base.yml.j2' %}
image: {{custom_wordpress_image}}
container_name: wordpress-application
2023-09-11 18:17:10 +02:00
build:
context: .
ports:
- "127.0.0.1:{{http_port}}:80"
volumes:
- data:/var/www/html
2024-01-06 11:09:30 +01:00
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80/"]
interval: 1m
timeout: 10s
retries: 3
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/container/depends-on-just-database.yml.j2' %}
{% include 'templates/docker/container/networks.yml.j2' %}
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/compose/networks.yml.j2' %}
2024-01-19 15:12:18 +01:00
{% include 'templates/docker/compose/volumes.yml.j2' %}
data: