aboutsummaryrefslogtreecommitdiff
path: root/testing/start-saio.sh
blob: 7e66f13ce3aa724b00e3873e67ee5c192b7d176d (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
set -euo pipefail

if docker inspect schwift-testing &>/dev/null; then
  echo 'Already running.'
else
  exec docker run --name schwift-testing -P -t dockerswiftaio/docker-swift:2.27.0
fi