This repository has been archived on 2024-06-12. You can view files and clone it, but cannot push or open issues or pull requests.
ipserv/INSTALLING.md
2024-04-20 02:41:31 +01:00

529 B

With docker

  1. Clone the repository
  2. Run docker build -t ipserv:latest .
  3. Run docker run -it --name ipserv --restart unless-stopped -p 8080:80/tcp -e "GUNICORN_CMD_ARGS='-w $(nproc)'" -d ipserv:latest
  4. Access http://localhost:8080/ in your browser
  5. Profit!?

Without docker

  1. Clone the repository
  2. install gunicorn, uvicorn, fastapi, aiohttp
  3. Run gunicorn -w $(nproc) -k uvicorn.workers.UvicornWorker -b 127.0.0.1:8080 ipserv:app
  4. Access http://localhost:8080/ in your browser
  5. Profit!?