1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00: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

30
gogs/arm/README.md Normal file

@ -0,0 +1,30 @@
gogs-arm
========
```yaml
Database Settings:
Database Type: MySQL
Host: mysql:3306
User: root
Password: root
Database Name: gogs
Application General Settings:
Application Name: "Gogs: Go Git Service"
Repository Root Path: /data/git/gogs-repositories
Run User: git
Domain: 192.168.31.231
SSH Port: 2222
HTTP Port: 3000
Application URL: http://192.168.31.231:3000/
Log Path: /app/gogs/log
Optional Settings:
Email Service Settings:
Server and Other Services Settings:
Admin Account Settings:
Username: root
Password: ******
Confirm Password: ******
Admin Email: root@easypi.info
```

@ -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

@ -2,8 +2,8 @@
# Dockerfile for phpmyadmin-arm
#
FROM easypi/alpine-arm:3.4
MAINTAINER kev <noreply@easypi.info>
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
WORKDIR /www/
@ -26,6 +26,7 @@ RUN set -xe \
&& curl -sSL https://github.com/phpmyadmin/docker/raw/master/config.inc.php > ./config.inc.php \
&& curl -sSL https://github.com/phpmyadmin/docker/raw/master/run.sh > /run.sh \
&& chmod +x /run.sh \
&& mkdir -p /sessions \
&& apk del curl tar \
&& rm -rf /var/cache/apk/*