# Init docker
docker-compose up -d
# Bring bash up inside docker
docker-compose exec wordpress bash
# Stop and Remove Containers, Networks, and Volumes
docker-compose down -v
# Remove Unused Docker Objects (Optional)
docker system prune -a --volumes
#
cd wordpress
curl -O https://wordpress.org/latest.tar.gz
tar -xzf latest.tar.gz --strip-components=1
rm latest.tar.gz
cd ..
Open your web browser and go to http://localhost:8000. You should see the WordPress setup page. Follow the on-screen instructions to complete the WordPress installation.
Open your web browser and go to http://localhost:8080. Log in with the database root credentials (root / rootpass) to manage your database.