coolify/templates/compose/wordpress-without-database.yaml

18 lines
484 B
YAML
Raw Normal View History

2024-02-20 17:08:16 +01:00
# documentation: https://wordpress.org
2024-04-16 12:42:12 +02:00
# slogan: Wordpress is open source software you can use to create a beautiful website, blog, or app.
2023-10-24 12:33:49 +02:00
# tags: cms, blog, content, management
2024-02-20 17:08:16 +01:00
# logo: svgs/wordpress.svg
2023-10-19 10:51:03 +02:00
services:
2024-04-16 12:42:12 +02:00
wordpress:
image: wordpress:latest
volumes:
- wordpress-files:/var/www/html
environment:
- SERVICE_FQDN_WORDPRESS
healthcheck:
2024-05-17 10:11:55 +02:00
test: ["CMD", "curl", "-f", "http://127.0.0.1"]
2024-04-16 12:42:12 +02:00
interval: 2s
timeout: 10s
retries: 10