mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
8 lines
312 B
Plaintext
8 lines
312 B
Plaintext
Running graphite under Docker is straightforward:
|
|
|
|
1. Build the graphite image using Docker
|
|
docker build -t graphite .
|
|
|
|
2. Run a graphite container. Be sure to replace the $IP field with the IP address at which you wish to expose your graphite web service.
|
|
docker run -p $IP:8080:80 -p $IP:2003:2003 -d graphite
|