mirror of
https://github.com/casjaysdevdocker/tools
synced 2025-01-18 06:34:31 -05:00
16 lines
421 B
Bash
16 lines
421 B
Bash
|
#!/usr/bin/env bash
|
||
|
mkdir -p /var/lib/docker/storage/rsyslog/elastic &&
|
||
|
chmod -Rf 777 /var/lib/docker/storage/rsyslog
|
||
|
|
||
|
docker run -d \
|
||
|
--name rsyslog \
|
||
|
--hostname syslogs \
|
||
|
--restart always \
|
||
|
--privileged \
|
||
|
-p 514:514 \
|
||
|
-p 514:514/udp \
|
||
|
-p 5601:5601 \
|
||
|
-v /etc/localtime:/etc/localtime:ro \
|
||
|
-v /var/lib/docker/storage/rsyslog/elastic:/var/lib/elasticsearch \
|
||
|
registry.casjay.in/latest/rsyslog:latest
|