No Description

dependabot[bot] c2d3c04aa8 build(deps): bump alpine from 20231219 to 20240315 (#60) 6 days ago
.github 1fd83e33d8 build(deps): bump docker/build-push-action from 5.2.0 to 5.3.0 (#58) 1 week ago
CHANGELOG.md af2e6dbb89 release v2.1.0 2 years ago
Dockerfile c2d3c04aa8 build(deps): bump alpine from 20231219 to 20240315 (#60) 6 days ago
Makefile 3a6020a728 added makefile to facilitate building, tagging & pushing container images 3 years ago
README.md 3db6b8f2a8 retry $RETRIES times before reporting "offline" state 2 years ago
docker-compose.yml 3db6b8f2a8 retry $RETRIES times before reporting "offline" state 2 years ago
monitor.sh 3db6b8f2a8 retry $RETRIES times before reporting "offline" state 2 years ago

README.md

docker: status report for .onion services ✉️ 🐳

send email via dma when tor .onion service goes online or offline

repo: https://github.com/fphammerle/docker-onion-service-status-mail

docker hub: https://hub.docker.com/r/fphammerle/onion-service-status-mail

signed image tags: https://github.com/fphammerle/docker-onion-service-status-mail/tags

$ sudo docker network create tor
$ sudo docker run -d --network tor \
    --name tor_proxy \
    fphammerle/tor-proxy
$ sudo docker run -d --network tor \
    -e TOR_HOST=tor_proxy -e TOR_PORT=9050 \
    -e ONION_SERVICE_HOST=change-me.onion \
    -e ONION_SERVICE_PORT=80 \
    -e RETRIES=2 \
    -e MAIL_TO=me@example.com,someone@else.com \
    --name onion_service_monitor  \
    fphammerle/onion-service-status-mail

docker-compose 🐙

  1. git clone https://github.com/fphammerle/docker-onion-service-status-mail
  2. edit docker-compose.yml
  3. docker-compose up --build