#!/bin/bash docker kill prometheus docker rm prometheus docker run \ -d --name prometheus \ --restart always \ --net mynet \ --user $(id -u container-user) \ -p 9090:9090 \ -v /data/prom/config/:/etc/prometheus/ \ -v /data/prom/data/:/prometheus/ \ prom/prometheus