You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
402 B
16 lines
402 B
5 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
export SUDO_ASKPASS='/usr/lib/seahorse/ssh-askpass'
|
||
|
|
||
|
# Make sure the docker daemon is running
|
||
|
if ! systemctl status --no-pager docker.service > /dev/null; then
|
||
|
sudo -A systemctl start docker.service
|
||
|
fi
|
||
|
|
||
|
# Make sure the container is running
|
||
|
if ! docker container ls | grep -q mpepping/cyberchef; then
|
||
|
sudo -A systemctl start cyberchef
|
||
|
fi
|
||
|
|
||
|
firefox-developer-edition localhost:8000
|