├── .env ├── .gitignore ├── Dockerfile ├── README.md ├── dev_build.sh ├── docker-compose.yml ├── release.sh └── start.sh /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartowski1182/text-generation-webui-docker/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartowski1182/text-generation-webui-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartowski1182/text-generation-webui-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartowski1182/text-generation-webui-docker/HEAD/README.md -------------------------------------------------------------------------------- /dev_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartowski1182/text-generation-webui-docker/HEAD/dev_build.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartowski1182/text-generation-webui-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartowski1182/text-generation-webui-docker/HEAD/release.sh -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bartowski1182/text-generation-webui-docker/HEAD/start.sh --------------------------------------------------------------------------------