docker-godot icon indicating copy to clipboard operation
docker-godot copied to clipboard

Official Linux server builds of Godot Engine + Export templates

Godot Engine Docker Image

Docker Build Docker Pull

Official Linux server builds of Godot Engine + the official templates

Godot Engine is located at /usr/local/bin/godot and the templates are installed in /.local/share/godot/templates/${GODOT_VERSION}.stable.

Usage Example (Travis CI)

services:
  - docker
install:
  - docker pull vayan/docker-godot
script:
  - docker run -v $(pwd):/build/src -v $(pwd)/output:/build/output vayan/docker-godot /bin/bash -c "godot --export-debug 'Mac OSX' /build/output/foo-mac.zip --path /build/src --quit -v"
deploy:
  - provider: releases
    skip-cleanup: true
    api_key: $GITHUB_TOKEN
    file_glob: true
    file: output/*
    on:
      branch: master