Skip to content

Commit

Permalink
Updated readme.
Browse files Browse the repository at this point in the history
Updated docker compose for new docker hub repo location.
Updated travis cfg
  • Loading branch information
pkittenis committed Nov 3, 2018
1 parent ee65eb7 commit b15eae1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ jobs:
skip_upload_docs: true
after_deploy:
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" &&
docker build --pull -t influxgraph/influxgraph:${TRAVIS_TAG} docker &&
docker build --pull --cache-from influxgraph/influxgraph -t influxgraph/influxgraph:${TRAVIS_TAG} docker &&
docker push influxgraph/influxgraph:${TRAVIS_TAG};
after_success:
- docker build --pull -t influxgraph/influxgraph:latest docker
- docker build --pull --cache-from influxgraph/influxgraph -t influxgraph/influxgraph:latest docker
- if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" &&
docker push influxgraph/influxgraph:latest;
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ Docker Image

.. code-block:: shell
docker pull ikuosu/influxgraph
docker create --name=influxgraph -p 8000:80 ikuosu/influxgraph
docker pull influxgraph/influxgraph
docker create --name=influxgraph -p 8000:80 influxgraph/influxgraph
docker start influxgraph
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.
Expand Down
2 changes: 1 addition & 1 deletion docker/compose/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM ikuosu/influxgraph
FROM influxgraph/influxgraph

0 comments on commit b15eae1

Please sign in to comment.