Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wordpress-docker-compose
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thorsten Sichtermann
wordpress-docker-compose
Commits
3d341994
Unverified
Commit
3d341994
authored
6 years ago
by
Harald Nezbeda
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #22 from slhck/add-pma
Add phpMyAdmin
parents
dcf0b97e
ba3ba561
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+12
-0
12 additions, 0 deletions
README.md
docker-compose.yml
+11
-0
11 additions, 0 deletions
docker-compose.yml
with
23 additions
and
0 deletions
README.md
+
12
−
0
View file @
3d341994
...
...
@@ -2,6 +2,12 @@
Easy WordPress development with Docker and Docker Compose.
With this project you can quickly run the following:
-
[
WordPress and WP CLI
](
https://hub.docker.com/_/wordpress/
)
-
[
phpMyAdmin
](
https://hub.docker.com/r/phpmyadmin/phpmyadmin/
)
-
[
MySQL
](
https://hub.docker.com/_/mysql/
)
Contents:
-
[
Requirements
](
#requirements
)
...
...
@@ -139,3 +145,9 @@ This way you can use the CLI command above as follows:
```
wp plugin list
```
### phpMyAdmin
You can also visit
`http://127.0.0.1:8080`
to access phpMyAdmin after starting the containers.
The default username is
`root`
, and the password is the same as supplied in the
`.env`
file.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
docker-compose.yml
+
11
−
0
View file @
3d341994
...
...
@@ -27,6 +27,17 @@ services:
-
db
-
wp
pma
:
image
:
phpmyadmin/phpmyadmin
environment
:
PMA_HOST
:
db
PMA_PORT
:
3306
MYSQL_ROOT_PASSWORD
:
"
${DB_ROOT_PASSWORD}"
ports
:
-
${IP}:8080:80
links
:
-
db:db
db
:
image
:
mysql:latest
# https://hub.docker.com/_/mysql/ - or mariadb https://hub.docker.com/_/mariadb
ports
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment