1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00

update nginad

This commit is contained in:
kev 2015-09-18 18:00:23 +08:00
parent 46ba1c9c12
commit b89bad9689
2 changed files with 30 additions and 0 deletions

@ -15,6 +15,7 @@ RUN apk add -U ca-certificates \
php-json \
php-openssl \
php-pdo \
php-pdo_mysql \
php-phar \
php-xml \
php-zlib \
@ -31,6 +32,7 @@ RUN apk add -U ca-certificates \
&& sed -i -e "s/'pass' => ''/'pass' => 'root'/" \
-e "s/'host' => 'localhost'/'host' => 'mysql'/" database.local.php \
&& chown -R nobody:nobody . \
&& apk del git \
&& rm -rf /var/cache/apk/*
COPY nginx.conf /etc/nginx/nginx.conf

@ -1,2 +1,30 @@
nginad
======
## docker-compose.yml
```
nginad:
image: vimagick/nginad
ports:
- "8080:80"
links:
- mysql
restart: always
mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=nginad
restart: always
```
## run
```
$ fig up -d
$ wget https://nginad.atlassian.net/wiki/download/attachments/1114149/nginad-1.6.sql
$ docker exec -i nginad_mysql_1 mysql -u root -proot nginad < nginad-1.6.sql
$ fig restart
```