Appearance
Getting Started with Cloud Deployments
How to get started with cloud environments and deploy your first server.
Appearance
How to get started with cloud environments and deploy your first server.
This guide walks you through the steps to build and deploy your game server to a target environment.
First, build a container image of your game server:
MyGame$ metaplay build image
The build command will generate a container image named <projectID>:<timestamp>
, like lovely-wombats-build:1739529676
, for example.
Then, deploy the built image to the desired cloud environment:
MyGame$ metaplay deploy server
The CLI will ask for the target environment and the container image version to deploy.
You can also specify the targets explicitly with:
MyGame$ metaplay deploy server lovely-wombats-build-quickly lovely-wombats-build:1739529676
You can check what happened with the deployment by checking the game server logs:
MyGame$ metaplay logs [ENVIRONMENT]
You need to configure your client to know about the cloud environments. You can do this by following the Setup section of the Environment Configs guide.
Next, select the deployed environment as the active environment in Unity's Metaplay → Environment Configs menu.
Then, press play in Unity and your client will connect to the deployed game server.
The Setup CI Pipeline guide helps you set up CI pipelines that automatically deploy new versions of the game server directly from your source control.
A game server can end up in an unhealthy state due to various reasons. For troubleshooting, please visit the Troubleshooting page for more details.