12 lines
160 B
Bash
Executable File
12 lines
160 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
# make sure the cwd is where the script is.
|
|
pushd "$(dirname "$0")" >> /dev/null
|
|
|
|
DEST=$1
|
|
|
|
cp ./docker-compose.yml $DEST
|
|
cp -r cron $DEST
|