Skip to content
The Programming Review

The Programming Review

A Developer Resource

Recent Posts

  • Password-less auto-login with SSH
  • More Linux Commands
  • Linux basic commands
  • Debian/Ubuntu Package Installation
  • Protected: Project Deliverables

Recent Comments

    Archives

    • March 2019
    • February 2019
    • January 2019
    • December 2018
    • November 2018
    • October 2018
    • September 2018
    • August 2018
    • June 2018
    • May 2018
    • April 2018

    Categories

    • Build Tools
    • CheatSheet
    • CMS
    • Coming Reviews
    • Command Line Productivity
    • Database
    • Exercise
    • For Study
    • GUI Development
    • HowTo
    • Linux Apps
    • Linux System
    • PHP
    • Productivity Tips
    • Programming Languages
    • Resources
    • Web Development

    Meta

    • Log in
    • Entries RSS
    • Comments RSS
    • WordPress.org

    How to run WordPress on Docker

    To avoid certain issues with MySQL 8.x use 5.7 instead:

    docker run –name some-mysql -e MYSQL_ALLOW_EMPTY_PASSWORD=true -d mysql:5.7

    Create WordPress container:

    docker run –name some-wordpress –link some-mysql:mysql -p 8091:80 -d wordpress

    Share this:

    • Click to share on Twitter (Opens in new window)
    • Click to share on Facebook (Opens in new window)

    Related

    Posted on 15. November 201817. December 2018Author adminCategories CMS, HowTo

    Post navigation

    Previous Previous post: Developer Productivity Articles and Videos
    Next Next post: WordPress shipping locations and methods
    Proudly powered by WordPress