A Docker container for itch.io's butler, the command-line tool for uploading and managing game builds on itch.io. This containerized version enables integration into CI/CD pipelines and provides a portable alternative to local installation.
Run butler --version command directly through Docker:
docker run --rm ghcr.io/delta3-studio/butler:latest --versiondocker run --rm \
-v $(pwd)/build:/build \
-e BUTLER_API_KEY=your_api_key \
ghcr.io/delta3-studio/butler:latest \
push /build user/game:channelBUTLER_API_KEY: Your itch.io API key for authentication.
git clone https://github.com/Delta3-Studio/butler.git
cd butler
docker build -t local:butler .For complete butler documentation, visit the official itch.io butler docs.
Distributed under the MIT License. See the LICENSE file for details.
Contributions are welcome. Please open issues or submit pull requests for improvements or bug fixes.