Skip to content

techtraits/docker-seyren

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-seyren

A dockerized Seyren Container

Usage

# Run MongoDB
docker run -d --name mongodb mongo

# Run Seyren and link MongoDB
docker run -d -p 8080:8080 --name seyren --link mongodb:mongodb -it usman/docker-seyren http://[GRAPHITE_URL]

# Run Seyren and link MongoDB using environment variable for graphite URL
docker run -d -p 8080:8080 --name seyren --link mongodb:mongodb -e GRAPHITE_URL=http://[GRAPHITE_URL] -it usman/docker-seyren


# Run a specific version of Seyren, VERSION can be 1.1.0 or 1.2.0
docker run -d -p 8080:8080 --name seyren --link mongodb:mongodb -i -t usman/docker-seyren:[VERSION] http://[GRAPHITE_URL]

Then point your browser at http://localhost:8080/

or http://192.168.59.103:8080/ if you are using boot2docker

Building

To build the image, simply invoke

docker build github.com/usmanismail/docker-seyren

A prebuilt container is also available in the docker index

docker pull usman/docker-seyren

Author

LICENSE

Copyright 2014 Usman Ismail

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%