Skip to content

leiter-jakab/godot-server-alpine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

godot-server-alpine

Godot container image based on an Alpine image variant. Small image meant to host Godot game servers in the cloud.

Resources

Usage

The image is primarily meant as a base image.

FROM leiterjakab/godot-server-alpine

COPY --chown=godot:godot game-server.pck /godot/game-server.pck

WORKDIR /godot
USER godot
EXPOSE 9999

CMD ["./godot", "--main-pack", "game-server.pck"]

Fort testing purposes you can also run the container and mount the exported game package.

docker run --rm -it \
  --name godot-game \
  -p 9999:9999 \
  -v /$PWD/game-server.pck:/godot/game-server.pck \
  -u godot \
  leiterjakab/godot-server-alpine

About

Godot server image based on Alpine

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published