Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mtlynch/docker-godot
- Owner: mtlynch
- License: mit
- Created: 2021-02-28T14:41:43.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-03-06T19:34:47.000Z (over 3 years ago)
- Last Synced: 2024-02-05T22:04:34.356Z (9 months ago)
- Language: Dockerfile
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```