9 lines
203 B
Bash
9 lines
203 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
TODAY=$(date +%Y-%m-%d)
|
|
|
|
docker-compose push
|
|
|
|
docker image tag git.nolog.cz/nolog.cz/nitter:latest git.nolog.cz/nolog.cz/nitter:$TODAY
|
|
docker push git.nolog.cz/nolog.cz/nitter:$TODAY
|