Skip to content

Commit b58f859

Browse files
authored
Merge branch 'master' into proxy
2 parents fc460f9 + 170a1ef commit b58f859

7 files changed

Lines changed: 47 additions & 3 deletions

File tree

DOCUMENTATION/_settings/content/documentation/index.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,23 @@ docker-compose up -d mariadb phpmyadmin
706706

707707

708708

709+
<br>
710+
<a name="Use-Adminer"></a>
711+
## Use Adminer
712+
713+
1 - Run the Adminer Container (`adminer`) with the `docker-compose up` command. Example:
714+
715+
```bash
716+
docker-compose up -d adminer
717+
```
718+
719+
2 - Open your browser and visit the localhost on port **8080**: `http://localhost:8080`
720+
721+
722+
723+
724+
725+
709726
<br>
710727
<a name="Use-pgAdmin"></a>
711728
## Use PgAdmin

DOCUMENTATION/_settings/content/getting-started/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ You can rename the config files, project folders and domains as you like, just m
138138
If you are using **Docker Toolbox** (VM), do one of the following:
139139

140140
- Upgrade to Docker [Native](https://www.docker.com/products/docker) for Mac/Windows (Recommended). Check out [Upgrading Laradock](#upgrading-laradock)
141-
- Use Laradock v3.* (Visit the `Laradock-ToolBox` [Branch](https://github.com/laradock/laradock/tree/Laradock-ToolBox)).
141+
- Use Laradock v3.* (Visit the `LaraDock-ToolBox` [Branch](https://github.com/laradock/laradock/tree/LaraDock-ToolBox)).
142142

143143
<br>
144144

@@ -168,7 +168,7 @@ docker-compose up -d nginx mysql
168168

169169
You can select your own combination of containers form the list below:
170170

171-
> `nginx`, `hhvm`, `php-fpm`, `mysql`, `redis`, `postgres`, `mariadb`, `neo4j`, `mongo`, `apache2`, `caddy`, `memcached`, `beanstalkd`, `beanstalkd-console`, `rabbitmq`, `beanstalkd-console`, `workspace`, `phpmyadmin`, `aerospike`, `pgadmin`, `elasticsearch`, `rethinkdb`, `postgres-postgis`, `certbot`, `mailhog`, `minio` and more...!
171+
> `nginx`, `hhvm`, `php-fpm`, `mysql`, `redis`, `postgres`, `mariadb`, `neo4j`, `mongo`, `apache2`, `caddy`, `memcached`, `beanstalkd`, `beanstalkd-console`, `rabbitmq`, `beanstalkd-console`, `workspace`, `phpmyadmin`, `adminer`, `aerospike`, `pgadmin`, `elasticsearch`, `rethinkdb`, `postgres-postgis`, `certbot`, `mailhog`, `minio` and more...!
172172
173173
*(Please note that sometimes we forget to update the docs, so check the `docker-compose.yml` file to see an updated list of all available containers).*
174174

DOCUMENTATION/_settings/content/introduction/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ What's better than a **Demo Video**:
169169
- RabbitMQ Console
170170
- **Tools:**
171171
- PhpMyAdmin
172+
- Adminer
172173
- PgAdmin
173174
- ElasticSearch
174175
- Selenium

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ Laradock is a Docker PHP development environment that facilitate running **PHP**
1919
- [Philippe Trépanier](https://github.com/philtrep) (philtrep)
2020
- [Mike Erickson](https://github.com/mikeerickson) (mikeerickson)
2121
- [Dwi Fahni Denni](https://github.com/zeroc0d3) (zeroc0d3)
22-
- Join Us.
22+
- [Thor Erik](https://github.com/thorerik) (thorerik)
23+
- Contribute and join us!
2324

2425
**Amazing Contributors:**
2526

adminer/Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM adminer:latest
2+
3+
MAINTAINER Patrick Artounian <partounian@gmail.com>
4+
5+
# Add volume for sessions to allow session persistence
6+
VOLUME /sessions
7+
8+
# We expose Adminer on port 8080 (Adminer's default)
9+
EXPOSE 8080

docker-compose.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,17 @@ services:
390390
networks:
391391
- frontend
392392

393+
### Adminer Container ####################################
394+
395+
adminer:
396+
build: ./adminer
397+
ports:
398+
- "${ADM_PORT}:8080"
399+
depends_on:
400+
- php-fpm
401+
networks:
402+
- frontend
403+
393404
### pgAdmin Container #######################################
394405

395406
pgadmin:
@@ -534,6 +545,8 @@ volumes:
534545
driver: "local"
535546
phpmyadmin:
536547
driver: "local"
548+
adminer:
549+
driver: "local"
537550
aerospike:
538551
driver: "local"
539552
caddy:

env-example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,9 @@ PMA_PASSWORD=secret
122122
PMA_ROOT_PASSWORD=secret
123123
PMA_PORT=88
124124

125+
### ADMINER Container
126+
ADM_PORT=88
127+
125128
### VARNISH Container
126129
VARNISH_CONFIG=/etc/varnish/default.vcl
127130
VARNISH_PORT=8080

0 commit comments

Comments
 (0)