Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mtlynch/docker-godot

Dockerized image for Godot Game Engine
https://github.com/mtlynch/docker-godot

Last synced: 24 days ago
JSON representation

Dockerized image for Godot Game Engine

Awesome Lists containing this project

README

        

# docker-godot

[![CircleCI](https://circleci.com/gh/mtlynch/docker-godot.svg?style=svg)](https://circleci.com/gh/mtlynch/docker-godot) [![Docker Pulls](https://img.shields.io/docker/pulls/mtlynch/godot.svg?maxAge=604800)](https://hub.docker.com/r/mtlynch/godot/) [![License](http://img.shields.io/:license-mit-blue.svg?style=flat-square)](LICENSE)

## Overview

Dockerized version of the Godot Game Engine.

## Usage

```bash
readonly LOCAL_APP_PATH="/path/to/your/godot/project"
docker run \
-it \
--rm \
--name godot \
-v "${LOCAL_APP_PATH}/:/app" \
godot \
--export HTML5 /app/project.godot /app/dist/index.html
```