wordpress builder using docker
Clone.
git clone https://github.com/elasyaf/wordpress
Build docker image.
docker build -t <your_repo_name>/wordpress:<tag>
example : 0xelasyaf/wordpress:latest
With docker compose.
version: "2.0"
services:
mariadb:
image: '0xelasyaf/mariadb:latest'
container_name: dbserver
environment:
- NEW_USER=<your_new_user>
- NEW_PASSWORD=<your_password_for_new_user>
- NEW_DATABASE=<your_db_for_wordpress>
webserver:
image: 0xelasyaf/wordpress:latest
container_name: wordpress
links:
- mariadb
ports:
- '80:80'
GPL-3.0
elasyaf @ 2019
Content type
Image
Digest
Size
369 MB
Last updated
over 7 years ago
docker pull 0xelasyaf/wordpress