Skip to content

mxssl/ntwrk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

83 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ntwrk

This is a simple app that you can use to check your external IP address. Hosted on http://sre.monster

Usage:

curl sre.monster

Install

If you want to run your own instance of the app, create a .env file with the following content:

# The app starts on this port
PORT=80
# The mode can be set to either "native" or "cloudflare"
# If you use "cloudflare" mode, then the app responds with the value of the HTTP header "CF-Connecting-IP"
# https://developers.cloudflare.com/fundamentals/reference/http-request-headers/#cf-connecting-ip
MODE=native

Create docker-compose.yml file:

version: '3'

services:
  ntwrk:
    image: mxssl/ntwrk:0.1.7
    env_file: .env
    restart: always
    # For "native" mode, you need to use the host network mode
    network_mode: host

Pull and start the container:

docker compose pull
docker compose up -d
docker compose logs