12 lines
317 B
YAML
12 lines
317 B
YAML
version: '3'
|
|
services:
|
|
db:
|
|
# We use a mariadb image which supports both amd64 & arm64 architecture
|
|
#image: mariadb:10.6.4-focal
|
|
# If you really want to use MySQL, uncomment the following line
|
|
image: mysql:8.0.27
|
|
wordpress:
|
|
image: wordpress:latest
|
|
ports:
|
|
- 3808:80
|
|
restart: always |