mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-08 09:38:04 +00:00
12 lines
290 B
Bash
Executable File
12 lines
290 B
Bash
Executable File
#!/bin/sh
|
|
#-v ~/.ssh/deploy_rsa:/var/opt/webhookd/deploy_rsa \
|
|
sudo docker run \
|
|
--name webhookd \
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
-v /home/nicolas/.ssh/deploy_rsa:/root/.ssh/id_rsa \
|
|
-it --rm \
|
|
-P \
|
|
--env-file ./etc/env.conf \
|
|
ncarlier/webhookd
|
|
|