├── .gitignore ├── .gitlab-ci.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── README.md ├── networking.md └── usage_examples │ ├── README.md │ ├── gitlab-runner.md │ └── gluetun.md ├── entrypoint.sh └── renovate.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/docs/networking.md -------------------------------------------------------------------------------- /docs/usage_examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/docs/usage_examples/README.md -------------------------------------------------------------------------------- /docs/usage_examples/gitlab-runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/docs/usage_examples/gitlab-runner.md -------------------------------------------------------------------------------- /docs/usage_examples/gluetun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/docs/usage_examples/gluetun.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ix-ai/swarm-launcher/HEAD/renovate.json --------------------------------------------------------------------------------