2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-25 14:59:14 +01:00

update phpmyadmin

This commit is contained in:
kev
2016-07-29 01:48:46 +08:00
parent e9926eba17
commit 9ed2ffe495
3 changed files with 40 additions and 4 deletions

View File

@@ -5,9 +5,11 @@ gogs:
- "3000:3000"
volumes:
- ./data:/data
links:
- mysql
restart: always
db:
mysql
image: easypi/mariadb-arm
ports:
- "3306:3306"
@@ -20,6 +22,9 @@ phpmyadmin:
image: easypi/phpmyadmin-arm
ports:
- "8080:80"
environment:
- PMA_HOST=mysql
- PMA_PORT=3306
links:
- db
- mysql
restart: always