15 lines
249 B
Bash
Executable File
15 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
start() {
|
|
podman run -i --rm -e GIT_SOURCE_REPO='https://git.jean-cloud.net/adrian/jean-cloud_website' -v "$HTTP_DIR:/usr/local/app" docker.io/jeancloud/pelican-rclone-builder
|
|
}
|
|
|
|
restart () {
|
|
start
|
|
}
|
|
|
|
stop () {
|
|
:
|
|
}
|