Releases: InstaZDLL/simple-wordpress-docker
Simple WordPress Docker v1.0.1 Release Note
Simple WordPress Docker Setup
This release includes a Docker setup for running a WordPress site. It includes a Dockerfile that sets up a WordPress server and an init.sql
script that initializes the WordPress database.
New Features
- Pre-built Image for WordPress: The WordPress in the container is a pre-built image, so the user, password, language, front page, and the first article have been already set. You can modify these in the settings of WordPress.
- Environment Variables for Configuration: You can set the database host, database name, username, and password using the
WORDPRESS_DATABASE_HOST
,WORDPRESS_DATABASE
,WORDPRESS_DATABASE_USER
, andWORDPRESS_DATABASE_PASSWORD
environment variables, respectively.
How to Use
You can run a container from this image using the following command:
docker run -d --name wordpress \
-e WORDPRESS_HOST=your-host-ip \
-e WORDPRESS_DATABASE_HOST=your-database-host \
-v /path/to/volume/:/var/www/wordpress \
-p 80:80 \
nayeonyny/wordpress:latest
Author
License
This project is licensed under the Academic Free License version 3.0. You may not use this file except in compliance with the License. You may obtain a copy of the License at https://opensource.org/license/afl-3-0-php/.
Full Changelog: v1.0.0...v1.0.1
Simple WordPress Docker v1.0.0 Release Note
Simple WordPress Docker Setup
This release includes a Docker setup for running a WordPress site. It includes a Dockerfile that sets up a WordPress server and an init.sql
script that initializes the WordPress database.
New Features
- Pre-built Image for WordPress: The WordPress in the container is a pre-built image, so the user, password, language, front page, and the first article have been already set. You can modify these in the settings of WordPress.
- Environment Variables for Configuration: You can set the database host, database name, username, and password using the
WORDPRESS_DATABASE_HOST
,WORDPRESS_DATABASE
,WORDPRESS_DATABASE_USER
, andWORDPRESS_DATABASE_PASSWORD
environment variables, respectively.
How to Use
You can run a container from this image using the following command:
docker run -d --name wordpress \
-e WORDPRESS_HOST=your-host-ip \
-e WORDPRESS_DATABASE_HOST=your-database-host \
-v /path/to/volume/:/var/www/wordpress \
-p 80:80 \
nayeonyny/wordpress:latest
Author
License
This project is licensed under the Academic Free License version 3.0. You may not use this file except in compliance with the License. You may obtain a copy of the License at https://opensource.org/license/afl-3-0-php/.
What's Changed
- Dev by @InstaZDLL in #1
New Contributors
- @InstaZDLL made their first contribution in #1
Full Changelog: https://github.com/InstaZDLL/simple-wordpress-docker/commits/v1.0.0