7 lines
299 B
Bash
Executable file
7 lines
299 B
Bash
Executable file
#!/bin/sh
|
|
|
|
docker build --no-cache --pull -t jotoho/www.jotoho.de:latest \
|
|
--build-arg WEBSITE_ARCHIVE_URL="https://gitea.jotoho.de/api/v1/repos/jotoho/my-website/archive/master.tar.gz" \
|
|
--build-arg WEBSITE_ARCHIVE_FOLDER="my-website" \
|
|
--build-arg WEBSITE_HOST="www.jotoho.de" \
|
|
.
|