Skip to content

Commit

Permalink
v2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
djdefi committed Dec 28, 2015
1 parent 2f17877 commit 0bab453
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM cachethq/docker:base-5a0320b

RUN cd /var/www/html && \
wget https://github.com/cachethq/Cachet/archive/v2.0.2.tar.gz && \
tar xzvf v2.0.2.tar.gz --strip-components=1 && \
wget https://github.com/cachethq/Cachet/archive/v2.0.3.tar.gz && \
tar xzvf v2.0.3.tar.gz --strip-components=1 && \
chown -R www-data /var/www/html && \
rm -r v2.0.2.tar.gz && \
rm -r v2.0.3.tar.gz && \
php composer.phar install --no-dev -o && \
cp -n vendor/jenssegers/date/src/Lang/zh.php vendor/jenssegers/date/src/Lang/zh-CN.php

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Note: Cachet recommends using PostgreSQL over MySQL

## PostgreSQL
```bash
docker run --name pgsql -e POSTGRES_USER=cachet POSTGRES_PASSWORD=cachet
docker run --name pgsql -e POSTGRES_USER=cachet -e POSTGRES_PASSWORD=cachet postgres:latest
docker run -d --name cachet --link pgsql:pgsql -p 80:8000 -e DB_DRIVER=pgsql -e DB_HOST=pgsql -e DB_DATABASE=cachet -e DB_USERNAME=cachet -e DB_PASSWORD=cachet cachethq/docker:latest
```

Expand Down

0 comments on commit 0bab453

Please sign in to comment.