mirror of
https://github.com/ViViDboarder/docker-duplicity-cron.git
synced 2024-11-14 07:16:30 +00:00
9e9f9ec956
Should simulate an S3 test
11 lines
187 B
Bash
Executable File
11 lines
187 B
Bash
Executable File
#! /bin/bash
|
|
|
|
image=$1
|
|
|
|
# Run the test script within the container
|
|
docker run --rm \
|
|
-e SKIP_ON_START=true \
|
|
-v "$(pwd)/itest.sh:/itest.sh" \
|
|
$image \
|
|
bash -c "/itest.sh"
|