2021-03-30 04:07:29 +02:00
# Docker build
# Must authenticate first: https://docs.github.com/en/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages#authenticating-to-github-packages
DOCKER_IMAGE = "owncast"
2021-03-31 02:06:20 +02:00
DATE = $( date +"%Y%m%d" )
VERSION = " ${ DATE } -nightly "
2021-03-30 04:07:29 +02:00
GIT_COMMIT = $( git rev-list -1 HEAD)
echo " Building Docker image ${ DOCKER_IMAGE } ... "
# Change to the root directory of the repository
cd $( git rev-parse --show-toplevel)
# Docker build
2021-06-18 04:27:17 +02:00
docker build --build-arg NAME = docker --build-arg VERSION = ${ VERSION } --build-arg GIT_COMMIT = $GIT_COMMIT -t ghcr.io/owncast/${ DOCKER_IMAGE } :nightly .
2021-03-30 04:07:29 +02:00
# Dockerhub
# You must be authenticated via `docker login` with your Dockerhub credentials first.
# docker push gabekangas/owncast:nightly
docker push ghcr.io/owncast/${ DOCKER_IMAGE } :nightly