mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-16 00:58:04 +00:00
17 lines
346 B
Bash
Executable File
17 lines
346 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
###
|
|
# Simple script to get a shell into the container.
|
|
###
|
|
sudo docker run \
|
|
--name webhookd \
|
|
--rm \
|
|
--env-file="./etc/env.conf" \
|
|
-v /var/run/docker.sock:/var/run/docker.sock \
|
|
-v /home/nicolas/.ssh/deploy_rsa:/root/.ssh/id_rsa \
|
|
-it \
|
|
--entrypoint="/bin/bash" \
|
|
ncarlier/webhookd \
|
|
-c /bin/bash
|