Deploying from a Docker Image
You can deploy an app to Hostim.dev using any public or private Docker image. This is the fastest way to run an existing container without a build step.
Requirements
- A Docker image hosted on a registry like Docker Hub or GitHub Container Registry
- The image must expose a default port (usually 80 or 3000)
How to deploy
- Go to your Hostim.dev dashboard
- Open your project and click Create Service -> New App.
- Give your App a name
- Choose Docker as in the Deployment Type field.
- Enter the full image name, for example:
nginx:latest
. - (Optional) Provide username and password for private images.
- Select number of replicas and a plan.
- Click Create App.
Your app will start running within seconds.
Common use cases
- Static sites or frontends
- Custom web services or APIs
- Background workers
- Any service that runs in a container