Skip to main content

Containers Ready

Last update:

Containers Ready

To work with Docker Compose files, you can use the Containers Ready application with the Ubuntu 22.04 operating system configured.The Containers Ready application contains:

  • Docker version 27.0.3 is a containerization platform for developing and running applications;
  • plugins to run Docker Compose version 2.11.1;
  • Portainer version 2.20.3 is a GUI for monitoring and managing Docker containers, images, and the Docker network.

The Selectel mirror is used as the Docker Registry repository for stable image operation.

You can Create a cloud server with Containers Ready application.

Create a cloud server with Containers Ready

For Containers Ready to work, the cloud server must be accessible from the Internet. To do this, you must create a private subnet and connect a public IP address — you can do this when creating the server. To configure Containers Ready and Portainer configuration, user data — user configuration parameters of the operating system — must be specified when creating the server.

Once the server is created, you can automatically release a free TLS Certificate from Let's Encrypt® for the domain you specify. To issue a certificate, you must add an A record for the domain and specify the public IP address of the server in the record value. The domain can be add to Selectel DNS hosting (actual).

Portainer with TLS certificate works on port 9443without a TLS certificate — on port 9000.

  1. В control panels go to Cloud platformServers.

  2. Click Create a server.

  3. In the block Name and location:

    3.1 In the field Name enter the server name. This will be set as the host name in the operating system.

    3.2 In the fields Region и Poole select region and pool segmentThe pool segment determines the list of available server configurations and the cost of resources. The list of available server configurations and the cost of resources depends on the pool segment. Once the server is created, the pool segment cannot be changed.

  4. In the block Source select the source from which the server will be created.

    Click on the default source name, open the tab Appendicesselect Cloud Containers Ready <version> 64-bit and press Select.

  5. In the block Configuration select a server configuration from 2 vCPUs, RAM from 2 GB and boot disk size from 20 GB. You can select:

    • fixed configuration — rulers in which the ratio of resources is fixed;
    • or arbitrary configuration, where any resource ratio can be specified.

    The configurations use different processors depending on the lineup and pool segment.

    5.1. To select a fixed configuration, press FixedOpen the tab with the desired ruler and select the configuration.

    5.2 To select an arbitrary configuration, press Arbitrary, specify the number of vCPUs and the size of RAM.

    5.3. To select the following as the server boot disk local diskand check the box Local SSD NVMe disk. To select a boot disk as the boot disk network diskdon't check the box.

    The amount of RAM that is allocated to the server may be less than specified in the configuration — the operating system kernel reserves some RAM depending on the kernel version and distribution. You can check the allocated amount on the server using the command sudo dmesg | grep Memory.

    Once the server is created, you can reconfigure.

  6. If you have not checked the checkbox Local SSD NVMe disk in step 5.3, the first specified network disk will be used as the server boot disk. In the block Disks:

    6.1 In the field Disk type select network boot disk type.

    6.2 Specify the size of the network boot disk in GB or TB. Take into account network disk limits to the maximum size.

  7. Optional: add additional network drives of the server. In the block Disks:

    7.1 In the field Disk type select network drive type.

    7.2 Specify the size of the network disk in GB or TB. Take into account network disk limits to the maximum size.

    7.3 To add another additional drive, press AddSelect the type of disk and specify its size.

    Once the server is created, you can disconnect additional disks from it or connect new ones.

  8. In the block Network create a private subnet and a static public IP address. In the Subnetwork select Private + 1 public IP. A private network will be automatically created nat, private subnet, router. router-nat and a public IP address.

    If a private subnet and a cloud router connected to an external network are created, in the field Subnetwork select Private + 1 public IPin the field Private subnet select the created subnet, in the Private IP specify the private IP address of the server. If a public IP address is created, click Connect existing and select a public IP address.

  9. In the block Access:

    9.1 Place on the server SSH key for the project for a secure connection.

    To add a new SSH key for a project to the cloud platform, click Add an SSH keyenter the key name, insert the public SSH key in OpenSSH format, and click Add.

    If an SSH key is added to the cloud platform, in the field SSH key select an existing key.

    The SSH key is only available in the pool in which it is hosted.

    9.2 Optionally: in the field Password for "root" copy the user's password root (a user with unlimited rights to all system operations). Save the password in a safe place and do not share it in public.

  10. In the block Additional settings:

    10.1 Optionally: if you plan to create multiple servers and want to increase the fault tolerance of your infrastructure, add a server in the placement group. To create a new group, press Create a group, enter a group name, and select a policy for hosting on different hosts:

    • preferably soft-anti-affinity. The system will try to place servers on different hosts. If there is no suitable host when creating a server, it will be created on the same host;
    • anti-affinity is mandatory. Servers in a group must be located on different hosts. If there is no suitable host when creating a server, the server will not be created.

    If the group is created, in the field Accommodation group select a placement group.

    10.2 Optional: add tags servers to add additional information or filter the servers in the list. Operating system and configuration tags are automatically added. To add a new tag, in the Tags enter tag.

  11. In the block Automation in the field User data insert a script that will be executed when the system boots:

    #cloud-config

    write_files:
    - path: "/opt/containers/docker-compose.yaml"
    permissions: "0644"
    content: |
    version: "3.9"
    name: test
    services:
    web:
    container_name: web
    image: "busybox"
    env_file: "/opt/containers/.env"
    db:
    container_name: db
    image: "busybox"
    env_file: "/opt/containers/.env"

    - path: "/opt/containers/.env"
    permissions: "0644"
    content: |
    ENV_VARIABLE: example.com

    - path: "/opt/gomplate/values/user-values.yaml"
    permissions: "0644"
    content: |
    portainer_password: "<administrator_password>"
    portainer_use_le: true
    portainer_domain: "<example.com>"
    portainer_le_email: "<root@example.com>"

    Specify:

    • in the code block content: for the file docker-compose.yaml specify the contents of the Docker Compose file;
    • in the code block content: for the file .env specify the contents of the file. If the file is not needed, delete the code block;
    • <administrator_password> — Portainer administrator password (default login — Admin);
    • portainer_use_le: true — parameter to automatically issue a TLS certificate from Let's Encrypt®;
    • <example.com> — domain to access the Portainer. For the domain, you must add an A record and specify the public IP address you specified in step 8 in the record value. If the domain added to Selectel DNS hosting (actual)use the instruction manual. Add a resource record. After the server is created, a TLS certificate from Let's Encrypt® will be automatically issued for the domain;
    • <root@example.com> — Portainer administrator email to create an account and receive Let's Encrypt® notifications.
  12. Check the price of the cloud server.

  13. Click Create.