mirror of
https://github.com/jcwimer/openstack-exporter
synced 2026-03-24 17:44:42 +00:00
6 lines
196 B
Bash
6 lines
196 B
Bash
#!/bin/bash
|
|
OPENSTACK_VARS=""
|
|
for var in $(env | grep OS_); do
|
|
OPENSTACK_VARS+="-e $var ";
|
|
done
|
|
docker run --name openstack_exporter -d -p 8000:8000 $OPENSTACK_VARS jcwimer/openstack_exporter $@ |