├── .github └── workflows │ └── docker_build.yml ├── LICENSE ├── README.md └── docker ├── Dockerfile ├── main.py ├── requirements.txt └── update_and_restart.sh /.github/workflows/docker_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljxi/GeoCN/HEAD/.github/workflows/docker_build.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljxi/GeoCN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljxi/GeoCN/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljxi/GeoCN/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljxi/GeoCN/HEAD/docker/main.py -------------------------------------------------------------------------------- /docker/requirements.txt: -------------------------------------------------------------------------------- 1 | maxminddb 2 | fastapi 3 | uvicorn -------------------------------------------------------------------------------- /docker/update_and_restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljxi/GeoCN/HEAD/docker/update_and_restart.sh --------------------------------------------------------------------------------