Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.23 KB

README.md

File metadata and controls

37 lines (28 loc) · 1.23 KB

CircleCI Docker Image Version (latest by date) Docker Image Size (tag)

Docker Godot

Docker image to build projects

This Docker image contains everything you need to run Godot Engine inside a container. It includes Godot and it's corresponding export templates. It may come in handy when setting up a CI or Godot server.

Supported versions

https://hub.docker.com/r/flashlight13/godot/tags

Getting Started

There're two primary usecases for this image:

  1. Use it as a part of game CI pipeline
  2. Run it directly to start godot

In any case, the first thing you have to do is to have Docker up and running.

Starting point of your image

  1. Make sure you're running it as a root user.
  2. In your container:
FROM flashlight13/godot:<version> AS base

...

RUN  godot ...

Executable docker image

docker pull flashlight13/godot:<version>
docker run flashlight13/godot:<version>