Skip to content

Commit cec4412

Browse files
committed
Merge branch 'ChieftainY2k-feature/phpmyadmin' into develop
2 parents 3c79c28 + fa5f902 commit cec4412

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

README.md

100644100755
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Supports:
1717
- Memcached (disabled)
1818
- Mailcatcher (if no mail sandbox is used, eg. [Vagrant Development VM](https://github.com/mblaschke/vagrant-development))
1919
- FTP server (vsftpd)
20+
- PhpMyAdmin
2021
- maybe more later...
2122

2223
This Docker boilerplate is based on the [Docker best practices](https://docs.docker.com/articles/dockerfile_best-practices/) and doesn't use too much magic. Configuration of each docker container is available in the `docker/` directory - feel free to customize.

docker-compose.development.yml

100644100755
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,21 @@ services:
155155
# - etc/environment.yml
156156
# - etc/environment.development.yml
157157

158+
#######################################
159+
# phpMyAdmin
160+
#######################################
161+
#phpmyadmin:
162+
# image: phpmyadmin/phpmyadmin
163+
# links:
164+
# - mysql
165+
# environment:
166+
# - PMA_ARBITRARY=1
167+
# - VIRTUAL_HOST=phpmyadmin.docker
168+
# ports:
169+
# - "8001:80"
170+
# volumes:
171+
# - /sessions
172+
158173
#######################################
159174
# Storage
160175
#######################################

documentation/DOCKER-INFO.md

100644100755
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ memcached (optional) | Memcached server
1616
redis (optional) | Redis server
1717
ftps (optional) | FTP server (vsftpd)
1818
mailcatcher (optional) | Mailserver with easy web and REST interface for mailing
19+
phpmyadmin (optional) | Tool written in PHP, intended to handle the administration of MySQL over the Web
1920

2021
The `app/` directory will be mounted under `/app` inside `app` container.
2122

@@ -32,6 +33,7 @@ memcached (optional) | [Memcached](https://registry.hub.docker.com/_/memcac
3233
redis (optional) | [Redis](https://registry.hub.docker.com/_/redis/) *official*
3334
ftp (optional) | [Ubuntu](https://registry.hub.docker.com/_/ubuntu/) *official*
3435
mailcatcher (optional) | [Mailcatcher](https://registry.hub.docker.com/u/schickling/mailcatcher/) from _schickling_
36+
phpmyadmin (optional) | [PhpMyAdmin](https://hub.docker.com/r/phpmyadmin/phpmyadmin/) *official*
3537

3638
## Makefile
3739

documentation/SERVICES.md

100644100755
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,13 @@ Ports | 20,21
8181
User | dev (if not changed in env)
8282
Password | dev (if not changed in env)
8383
Path | /storage/ftp (if not changed in env)
84+
85+
### PhpMyAdmin
86+
87+
Setting | Value
88+
------------- | -------------
89+
Host | phpmyadmin
90+
Ports | 8001
91+
Log in server | mysql
92+
Username | dev (if not changed in env, see mysql container configuration)
93+
Password | dev (if not changed in env, see mysql container configuration)

0 commit comments

Comments
 (0)