Skip to content

Commit b15eae1

Browse files
author
Pan
committed
Updated readme.
Updated docker compose for new docker hub repo location. Updated travis cfg
1 parent ee65eb7 commit b15eae1

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,10 @@ jobs:
8989
skip_upload_docs: true
9090
after_deploy:
9191
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" &&
92-
docker build --pull -t influxgraph/influxgraph:${TRAVIS_TAG} docker &&
92+
docker build --pull --cache-from influxgraph/influxgraph -t influxgraph/influxgraph:${TRAVIS_TAG} docker &&
9393
docker push influxgraph/influxgraph:${TRAVIS_TAG};
9494
after_success:
95-
- docker build --pull -t influxgraph/influxgraph:latest docker
95+
- docker build --pull --cache-from influxgraph/influxgraph -t influxgraph/influxgraph:latest docker
9696
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then
9797
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" &&
9898
docker push influxgraph/influxgraph:latest;

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ Docker Image
5151

5252
.. code-block:: shell
5353
54-
docker pull ikuosu/influxgraph
55-
docker create --name=influxgraph -p 8000:80 ikuosu/influxgraph
54+
docker pull influxgraph/influxgraph
55+
docker create --name=influxgraph -p 8000:80 influxgraph/influxgraph
5656
docker start influxgraph
5757
5858
There will now be a Graphite-API running on ``localhost:8000`` from the container with a default InfluxDB configuration and memcache enabled. Finder expects InfluxDB to be running on ``localhost:8086`` by default.

docker/compose/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM ikuosu/influxgraph
1+
FROM influxgraph/influxgraph

0 commit comments

Comments
 (0)