Skip to main content

Game Image URL format

The format of the Game Image URL is as follows:

With image name

gir.improbable.io/<project-id>/<image-name>:<image-version>

For example an image publish command with the --name flag:

ims image publish --project-id alpha-beta-123456 --name "server-image" --description "My first game" --version "0.0.1" --directory ./game_server_assembly_folder

Results in the image URL:

gir.improbable.io/alpha-beta-123456/server-image:0.0.1
info

A Project can have up to 10 unique image names.

We recommend using the name to group similar images together e.g. main-server, and simplayer-server. If you only have one type of game server image then you don't need to provide a name.

Without image name

gir.improbable.io/<project-id>:<image-version>

For example an image publish command without the --name flag:

ims image publish --project-id alpha-beta-123456 --description "My first game" --version "0.0.1" --directory ./game_server_assembly_folder

Results in the image URL:

gir.improbable.io/alpha-beta-123456:0.0.1