You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ This repository contains the Dockerfiles for the official Godot engine builds. T
5
5
6
6
## What is a Docker?
7
7
8
-
They are like a chroot environment with more features. They are similar to a virtual machine, except they use the same kernel as the host operating system.
8
+
They are like a chroot environment with its own filesystem, network stack, and process tree. They are similar to a virtual machine, but they use the same kernel as the host operating system.
9
9
10
10
Basically a docker is a container wherein you can set up and run a complete environment without impacting your primary OS. After using these scripts, you will have set up several linux images, each designed to cross compile Godot for a particular platform with officially designated, compatible versions of compilers, sdks and libraries.
11
11
@@ -36,7 +36,8 @@ Basically a docker is a container wherein you can set up and run a complete envi
36
36
1. Once build.sh completes, check your images. You can usally replace the command `podman` with `docker` if you installed the latter.
37
37
```
38
38
$ podman images
39
-
REPOSITORY TAG IMAGE ID CREATED SIZE
39
+
REPOSITORY TAG IMAGE ID CREATED SIZE
40
+
localhost/godot-android latest 8b894fa58db3 1 hour ago 12.8 GB
40
41
localhost/godot-ubuntu-64 latest 45ecfc4e4fa0 9 hours ago 1.11 GB
41
42
localhost/godot-ubuntu-32 latest fbc92a88f15a 10 hours ago 1.05 GB
42
43
localhost/godot-windows latest 1f3e021fa80b 10 hours ago 3.38 GB
@@ -66,7 +67,7 @@ Basically a docker is a container wherein you can set up and run a complete envi
1. You can simultaneously access the files in your godot directory from either inside the docker shell, or from your host OS. For instance, to grab the executables from the bin directory.
0 commit comments