mirror of
https://github.com/stashapp/stash.git
synced 2026-01-18 22:23:03 +01:00
9 lines
272 B
Bash
9 lines
272 B
Bash
#!/bin/bash
|
|
|
|
DOCKER_TAG=$1
|
|
|
|
# must build the image from dist directory
|
|
docker build -t stashapp/stash:$DOCKER_TAG -f ./docker/ci/x86_64/Dockerfile ./dist
|
|
|
|
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
|
docker push stashapp/stash:$DOCKER_TAG
|