Change adminer expose port to 8080

Most webservers default to 80, but Adminer's docker container runs on 8080.
This commit is contained in:
Patrick Artounian 2017-03-30 18:19:06 -07:00
parent 68dd2fd019
commit a11206d4ba
2 changed files with 3 additions and 3 deletions

View File

@ -5,5 +5,5 @@ MAINTAINER Patrick Artounian <partounian@gmail.com>
# Add volume for sessions to allow session persistence
VOLUME /sessions
# We expose Adminer on port 80
EXPOSE 80
# We expose Adminer on port 8080 (Adminer's default)
EXPOSE 8080

View File

@ -344,7 +344,7 @@ services:
adminer:
build: ./adminer
ports:
- "${ADM_PORT}:80"
- "${ADM_PORT}:8080"
depends_on:
- php-fpm