Docker
> Documentation > Docs > INFINI Console > Getting Started > Docker

Container Deployment #

INFINI Console supports container deployment.

Downloading an Image #

The images of INFINI Console are published at the official repository of Docker. The URL is as follows:

https://hub.docker.com/r/infinilabs/console

Use the following command to obtain the latest container image:

docker pull dockerproxy.com/infinilabs/console:latest

Verifying the Image #

After downloading the image locally, you will notice that the container image of INFINI Console is very small, with a size less than 30 MB. So, the downloading is very fast.

✗ docker images
REPOSITORY                                      TAG       IMAGE ID       CREATED          SIZE
infinilabs/console                            latest    8c27cd334e4c   47 minutes ago   26.4MB

Starting the Console #

Use the following command to start the INFINI Console container:

docker run -p 9000:9000 dockerproxy.com/infinilabs/console:latest

Docker Compose #

You can also use docker compose to manage container instances. Create one docker-compose.yml file as follows:

version: "3.5"

services:
  infini-console:
    image: infinilabs/console:latest
    ports:
      - 9000:9000
    container_name: "infini-console"

In the directory where the configuration file resides, run the following command to start INFINI Console.

➜  docker-compose up