41 lines
857 B
YAML
41 lines
857 B
YAML
|
services:
|
||
|
wordpress:
|
||
|
image: wordpress
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 8080:80
|
||
|
environment:
|
||
|
WORDPRESS_DB_HOST: db
|
||
|
WORDPRESS_DB_USER: exampleuser
|
||
|
WORDPRESS_DB_PASSWORD: examplepass
|
||
|
WORDPRESS_DB_NAME: exampledb
|
||
|
volumes:
|
||
|
- wordpress:/var/www/html
|
||
|
depends_on:
|
||
|
db:
|
||
|
condition: service_healthy
|
||
|
|
||
|
db:
|
||
|
image: mysql:8.0
|
||
|
restart: always
|
||
|
environment:
|
||
|
MYSQL_DATABASE: exampledb
|
||
|
MYSQL_USER: exampleuser
|
||
|
MYSQL_PASSWORD: examplepass
|
||
|
MYSQL_RANDOM_ROOT_PASSWORD: "1"
|
||
|
volumes:
|
||
|
- db:/var/lib/mysql
|
||
|
# set memory limit to 1 gigabyte
|
||
|
deploy:
|
||
|
resources:
|
||
|
limits:
|
||
|
memory: 1G
|
||
|
# healthcheck
|
||
|
healthcheck:
|
||
|
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
|
||
|
timeout: 20s
|
||
|
retries: 10
|
||
|
|
||
|
volumes:
|
||
|
wordpress:
|
||
|
db:
|