├── .github └── workflows │ ├── base-docker-publish.yml │ └── docker-publish.yml ├── Dockerfile ├── README.md ├── base └── Dockerfile ├── compose ├── astrbot.yml ├── dice.yml ├── koishi.yml ├── olivos.yml ├── q2tg.yml ├── sealdice.yml └── ws.yml ├── entrypoint.sh ├── get_artifacts.sh └── templates └── templates ├── astrbot.json ├── dice.json ├── koishi.json ├── nonebot.json ├── olivos.json ├── q2tg.json ├── sealdice.json └── ws.json /.github/workflows/base-docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/.github/workflows/base-docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/README.md -------------------------------------------------------------------------------- /base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/base/Dockerfile -------------------------------------------------------------------------------- /compose/astrbot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/compose/astrbot.yml -------------------------------------------------------------------------------- /compose/dice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/compose/dice.yml -------------------------------------------------------------------------------- /compose/koishi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/compose/koishi.yml -------------------------------------------------------------------------------- /compose/olivos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/compose/olivos.yml -------------------------------------------------------------------------------- /compose/q2tg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/compose/q2tg.yml -------------------------------------------------------------------------------- /compose/sealdice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/compose/sealdice.yml -------------------------------------------------------------------------------- /compose/ws.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/compose/ws.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /get_artifacts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/get_artifacts.sh -------------------------------------------------------------------------------- /templates/templates/astrbot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/templates/templates/astrbot.json -------------------------------------------------------------------------------- /templates/templates/dice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/templates/templates/dice.json -------------------------------------------------------------------------------- /templates/templates/koishi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/templates/templates/koishi.json -------------------------------------------------------------------------------- /templates/templates/nonebot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/templates/templates/nonebot.json -------------------------------------------------------------------------------- /templates/templates/olivos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/templates/templates/olivos.json -------------------------------------------------------------------------------- /templates/templates/q2tg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/templates/templates/q2tg.json -------------------------------------------------------------------------------- /templates/templates/sealdice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/templates/templates/sealdice.json -------------------------------------------------------------------------------- /templates/templates/ws.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NapNeko/NapCat-Docker/HEAD/templates/templates/ws.json --------------------------------------------------------------------------------