mirror of
https://github.com/phpmyadmin/docker.git
synced 2026-08-28 10:15:12 -05:00
As this is a Docker container running a web application, it would make sense to expose the http port (80) instead of port 8080. A user can always specify the 'external' port to his liking using e.g. `-p 8080:80`. Fixes #18.
9 lines
159 B
YAML
9 lines
159 B
YAML
phpmyadmin:
|
|
image: phpmyadmin/phpmyadmin
|
|
container_name: myadmin
|
|
environment:
|
|
- PMA_ARBITRARY=1
|
|
restart: always
|
|
ports:
|
|
- 8080:80
|