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

33 lines
601 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: nginx:alpine
working_dir: /app
2021-12-03 12:19:23 +00:00
ports:
- "80:80"
volumes:
2021-12-06 12:41:41 +00:00
- ./nginx.conf:/etc/nginx/conf.d/default.conf:cached
- ./src:/app:cached
php:
image: "thecoopcloud/wordpress:5.8.2-php8.0-fpm-bedrock"
build: .
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: