• Stars
    star
    1
  • Language
    Python
  • Created about 4 years ago
  • Updated about 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A simple server which will ping me on each http request

Build

docker build --tag notifier:latest --output type=tar,dest=notifier.tar .

or (for older docker version)

docker build --tag notifier:latest . && docker save -o notifier.tar notifier:latest

Deploy

docker load --input notifier.tar
docker run -d -p 5001:5000 -e BOT_API='your-bot-api-key' -e CHAT_ID='your-chat-id' --restart unless-stopped --name notifier notifier