mirror of
https://github.com/danog/TelegramApiServer.git
synced 2024-11-26 11:54:42 +01:00
Add version check
This commit is contained in:
parent
888a6d9add
commit
8037271a76
@ -4,6 +4,8 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local
|
||||
|
||||
COPY --from=ghcr.io/ufoscout/docker-compose-wait:latest /wait /usr/local/bin/docker-compose-wait
|
||||
|
||||
RUN echo 1.0.0 > /tas_version
|
||||
|
||||
EXPOSE 9503
|
||||
|
||||
ENTRYPOINT ["./entrypoint.sh"]
|
||||
|
@ -1,4 +1,12 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
VERSION=1.0.0
|
||||
CURRENT_VERSION=$(cat /tas_version)
|
||||
|
||||
if [ "$VERSION" != "$CURRENT_VERSION" ]; then
|
||||
echo "Wrong docker image version, expected $VERSION, got $CURRENT_VERSION, please run docker compose pull!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
docker-compose-wait \
|
||||
&& nice -n 20 php server.php -e=.env.docker --docker "$@"
|
Loading…
Reference in New Issue
Block a user