2b04ed5e0e
From readme of [phpmyadmin/docker](https://github.com/phpmyadmin/docker) > Note that since phpMyAdmin has been accepted in to the official DockerHub repository, you can use either that or this older phpMyAdmin repository for your Docker installation. This is maintained as a courtesy to users who have not migrated. P.S. version from `phpmyadmin` supports `caching_sha2_password`, that makes me happy :)
10 lines
187 B
Docker
10 lines
187 B
Docker
FROM phpmyadmin
|
|
|
|
LABEL maintainer="Bo-Yi Wu <appleboy.tw@gmail.com>"
|
|
|
|
# Add volume for sessions to allow session persistence
|
|
VOLUME /sessions
|
|
|
|
# We expose phpMyAdmin on port 80
|
|
EXPOSE 80
|