Skip to content

Commit

Permalink
Update for Godot 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robpc committed Dec 4, 2023
1 parent c23e245 commit a1847b8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Dockerhub

env:
docker_repo: robpc/godot-headless
latest: 4.1
latest: 4.1.1

on:
push:
Expand All @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
version:
- '4.1'
- '4.1.1'
exports:
- linux
- macos
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ARG EXPORT_TEMPLATES=all
# Alias for the root image
FROM debian:stable-slim AS base

ARG GODOT_VERSION=4.1
ARG GODOT_VERSION=4.1.1

#------------------------------
# Installs packages to use wget
Expand Down
29 changes: 15 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,32 @@ The entrypoint calls the Godot Engine (`/usr/local/bin/godot`) so override the `
version: '2'
services:
godot:
image: godot-headless:4.1-desktop
image: godot-headless:4.1.1-desktop
volumes:
- ./:/project
command: --path /project --export win64 bin/win64/maze-test.exe
```
## Docker Tags
The tags follow the Godot version and allow for different export template installs (for filesize). When in doubt use the base version (ex. 4.1) which includes all templates provided by Godot.
The tags follow the Godot version and allow for different export template installs (for filesize). When in doubt use the base version (ex. 4.1.1) which includes all templates provided by Godot.
- `4.1`, `4.1-all`, `latest`
- `4.1-desktop`
- `4.1-linux`
- `4.1-macos`
- `4.1-windows`
- `4.1-win32`
- `4.1-win64`
- `4.1-mobile`
- `4.1-android`
- `4.1-ios`
- `4.1-web`
- `4.1.1`, `4.1.1-all`, `latest`
- `4.1.1-desktop`
- `4.1.1-linux`
- `4.1.1-macos`
- `4.1.1-windows`
- `4.1.1-win32`
- `4.1.1-win64`
- `4.1.1-mobile`
- `4.1.1-android`
- `4.1.1-ios`
- `4.1.1-web`

Prior versions:

- `4.0.4`
- `4.1.1`
- `4.1`
- `4.0.3`
- `4.0.2`
- `4.0.1`
Expand Down

0 comments on commit a1847b8

Please sign in to comment.