2022-02-02 12:12:08 +01:00
|
|
|
services:
|
2024-01-08 19:59:58 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/services/' + database_type + '.yml.j2' %}
|
2024-01-08 19:59:58 +01:00
|
|
|
|
2022-02-02 12:12:08 +01:00
|
|
|
application:
|
|
|
|
logging:
|
|
|
|
driver: journald
|
2023-09-11 18:17:10 +02:00
|
|
|
image: custom_wordpress
|
2024-01-14 14:10:36 +01:00
|
|
|
container_name: wordpress-application
|
2023-09-11 18:17:10 +02:00
|
|
|
build:
|
|
|
|
context: .
|
2024-01-12 20:57:58 +01:00
|
|
|
restart: {{docker_restart_policy}}
|
2022-02-02 12:12:08 +01:00
|
|
|
ports:
|
|
|
|
- "127.0.0.1:{{http_port}}:80"
|
|
|
|
environment:
|
2023-12-26 03:13:16 +01:00
|
|
|
WORDPRESS_DB_HOST: "{{database_host}}:3306"
|
|
|
|
WORDPRESS_DB_USER: "{{database_username}}"
|
|
|
|
WORDPRESS_DB_PASSWORD: "{{database_password}}"
|
2024-01-06 14:32:49 +01:00
|
|
|
WORDPRESS_DB_NAME: "{{database_name}}"
|
2022-02-02 12:12:08 +01:00
|
|
|
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' %}
|
2023-12-26 03:13:16 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/networks.yml.j2' %}
|
2023-12-26 03:13:16 +01:00
|
|
|
|
2024-01-19 15:12:18 +01:00
|
|
|
{% include 'templates/docker/compose/volumes.yml.j2' %}
|
2022-02-02 12:12:08 +01:00
|
|
|
data:
|