Skip to content

Commit

Permalink
Merge pull request #2634 from bestlong/fix-port-conflict
Browse files Browse the repository at this point in the history
fix bind port conflict
  • Loading branch information
bestlong committed Jun 18, 2020
2 parents a8ac0b6 + aa179b6 commit cbb949c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DOCUMENTATION/content/documentation/index.md
Expand Up @@ -977,7 +977,7 @@ docker-compose up -d mariadb phpmyadmin

*Note: To use with MariaDB, open `.env` and set `PMA_DB_ENGINE=mysql` to `PMA_DB_ENGINE=mariadb`.*

2 - Open your browser and visit the localhost on port **8080**: `http://localhost:8080`
2 - Open your browser and visit the localhost on port **8081**: `http://localhost:8081`



Expand Down Expand Up @@ -1074,7 +1074,7 @@ job1:
docker-compose up -d adminer
```

2 - Open your browser and visit the localhost on port **8080**: `http://localhost:8080`
2 - Open your browser and visit the localhost on port **8081**: `http://localhost:8081`

**Note:** We've locked Adminer to version 4.3.0 as at the time of writing [it contained a major bug](https://sourceforge.net/p/adminer/bugs-and-features/548/) preventing PostgreSQL users from logging in. If that bug is fixed (or if you're not using PostgreSQL) feel free to set Adminer to the latest version within [the Dockerfile](https://github.com/laradock/laradock/blob/master/adminer/Dockerfile#L1): `FROM adminer:latest`

Expand Down
4 changes: 2 additions & 2 deletions env-example
Expand Up @@ -399,7 +399,7 @@ MINIO_PORT=9000

### ADMINER ###############################################

ADM_PORT=8080
ADM_PORT=8081
ADM_INSTALL_MSSQL=false

### PHP MY ADMIN ##########################################
Expand All @@ -413,7 +413,7 @@ PMA_DB_ENGINE=mysql
PMA_USER=default
PMA_PASSWORD=secret
PMA_ROOT_PASSWORD=secret
PMA_PORT=8080
PMA_PORT=8081

### MAILDEV ###############################################

Expand Down

0 comments on commit cbb949c

Please sign in to comment.