shlink/indocker

9 lines
194 B
Plaintext
Raw Normal View History

2017-01-19 15:56:45 -06:00
#!/usr/bin/env bash
2018-12-02 12:13:49 -06:00
# Run docker containers if they are not up yet
if ! [[ $(docker ps | grep shlink_swoole) ]]; then
docker compose up -d
2018-12-02 12:13:49 -06:00
fi
docker exec -it shlink_swoole /bin/sh -c "$*"