Files
docker/docker-compose.yml
T
Rick Wieman a87ccec937 Switch to port 80 (instead of 8080)
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.
2016-02-08 10:41:25 +01:00

9 lines
159 B
YAML

phpmyadmin:
image: phpmyadmin/phpmyadmin
container_name: myadmin
environment:
- PMA_ARBITRARY=1
restart: always
ports:
- 8080:80