This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command
$ docker-compose up -d
# To Tear Down
$ docker-compose down --volumes
Recommendations of unit types per media type:
Media | Recommended | Occasional use | Infrequent use | Not recommended |
---|---|---|---|---|
Screen | em, rem, % | px | ch, ex, vw, vh, vmin, vmax | cm, mm, in, pt, pc |
em, rem, % | cm, mm, in, pt, pc | ch, ex | px, vw, vh, vmin, vmax |
[user] | |
email = mackewinsson@gmail.com | |
name = mackewinsson | |
[pull] | |
rebase = true | |
[fetch] | |
prune = true | |
[diff] | |
colorMoved = zebra | |
[alias] |
version: "3" | |
services: | |
flarum: | |
image: mondedie/flarum:latest | |
container_name: flarum_core | |
environment: | |
- DEBUG=false | |
- FORUM_URL=http://flarum.osc.uk | |
- DB_HOST=mariadb |