This repository has been archived on 2024-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
wordpress-bedrock-template/docker-compose.yml

31 lines
552 B
YAML
Raw Normal View History

2021-12-03 12:19:23 +00:00
---
2021-12-06 12:41:41 +00:00
version: '3.1'
2021-12-03 12:19:23 +00:00
services:
2021-12-06 12:41:41 +00:00
web:
image: "thecoopcloud/nginx:1.21.4-bedrock"
2021-12-06 12:41:41 +00:00
working_dir: /app
2021-12-03 12:19:23 +00:00
ports:
- "80:80"
volumes:
2021-12-06 12:41:41 +00:00
- ./src:/app:cached
php:
2021-12-08 08:45:46 +00:00
image: "thecoopcloud/wordpress:5.8.2-php7.4-fpm-bedrock"
2021-12-06 12:41:41 +00:00
working_dir: /app
volumes:
- ./src:/app:cached
2021-12-03 12:19:23 +00:00
db:
2021-12-06 12:41:41 +00:00
image: mariadb:10.4
2021-12-03 12:19:23 +00:00
volumes:
- "mariadb:/var/lib/mysql"
environment:
- MYSQL_ROOT_PASSWORD=wordpress
- MYSQL_DATABASE=wordpress
- MYSQL_USER=wordpress
- MYSQL_PASSWORD=wordpress
volumes:
mariadb: