Added wordpress docker compose

This commit is contained in:
2026-02-17 10:09:18 +01:00
commit e00c7afa54
2 changed files with 93 additions and 0 deletions

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
web:
image: wordpress:latest
depends_on:
- db
ports:
- 80:80
db:
image: mysql:latest
ports:
- 3306:3306