mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
- Replaced all lowercase wordpress_* variables with uppercase WORDPRESS_* equivalents - Ensured consistency across tasks, templates, and vars - Improves readability and aligns with naming conventions Conversation: https://chatgpt.com/share/68af29b5-8e7c-800f-bd12-48cc5956311c
22 lines
783 B
Django/Jinja
22 lines
783 B
Django/Jinja
{% include 'roles/docker-compose/templates/base.yml.j2' %}
|
|
application:
|
|
{% include 'roles/docker-container/templates/base.yml.j2' %}
|
|
image: {{ WORDPRESS_CUSTOM_IMAGE }}
|
|
container_name: {{ WORDPRESS_CONTAINER }}
|
|
build:
|
|
context: .
|
|
ports:
|
|
- "127.0.0.1:{{ ports.localhost.http[application_id] }}:80"
|
|
volumes:
|
|
- data:{{ WORDPRESS_DOCKER_HTML_PATH }}
|
|
|
|
{% include 'roles/docker-container/templates/healthcheck/msmtp_curl.yml.j2' %}
|
|
{% include 'roles/docker-container/templates/depends_on/dmbs_excl.yml.j2' %}
|
|
{% include 'roles/docker-container/templates/networks.yml.j2' %}
|
|
|
|
{% include 'roles/docker-compose/templates/networks.yml.j2' %}
|
|
|
|
{% include 'roles/docker-compose/templates/volumes.yml.j2' %}
|
|
data:
|
|
name: "{{ WORDPRESS_VOLUME }}"
|