Instructions — Page 15

16.09.2023
16 818
Knowledge base / Instructions
More about the systemctl utility

Systemctl is a system utility in the Linux operating system that is used to manage services or daemons. It is one of the main utilities in systems that use the systemd init system. Systemd is a tool for managing processes and services, and includes an init system, a unit manager, and other components.

15.09.2023
14 482
Knowledge base / Instructions
What are services in Linux

Services in Linux are programs that run in the background and provide certain functions or services to the system or users. They run independently of user interaction and are started at operating system startup.

14.09.2023
7 422
Knowledge base / Instructions
Configuring storage in Docker

Configuring Docker stores is a process that allows you to set certain parameters and settings for the stores used in Docker containers. Docker stores allow you to store and manage data inside containers.

13.09.2023
15 290
Knowledge base / Instructions
What you need to configure Docker storage for

Storage configuration in Docker refers to the process of creating and managing the data stores used in containers. Stores allow you to save data between container launches, keeping it safe and available. Setting up stores in Docker allows you to manage and save the data used in containers. This is important because containers are immutable by default and any changes made within a container are lost when the container is stopped or deleted.

12.09.2023
24 122
Knowledge base / Instructions
Mounting folders in Docker

Mounting folders (or file systems) means linking or connecting a file system (folder or directory) to a specific location on another file system. This allows you to make the contents of one folder available inside another folder or even at another location in the system.

11.09.2023
40 954
Knowledge base / Instructions
How to make a connection to a container in Docker

A Docker container is a lightweight and isolated environment in which you can run applications and their dependencies. It uses containerization to package applications and all necessary components (such as libraries, configuration files, etc.) into a single object that can be ported and run on any Docker-enabled system.

10.09.2023
18 408
Knowledge base / Instructions
What are container ports?

Container ports are specific network ports that can be bound to specific services or applications within a container. Each container can have its own ports that can be used to communicate with the outside world or to communicate with other containers. When starting a container, you can specify which ports should be available within the container and which ports should be forwarded to the host machine.

09.09.2023
22 545
Knowledge base / Instructions
How to launch a container in Docker

A Docker container is a lightweight and isolated environment that contains everything you need to run an application, including code, dependencies, libraries, and settings. It uses containerization to package and deliver applications using standardized processes.

03.09.2023
14 933
Knowledge base / Instructions
How to create a project in Docker Compose

A project in Docker Compose allows you to package and run multiple related services together. This can be useful when your application consists of multiple components such as a web server, database, and cache server that need to run together.

02.09.2023
7 956
Knowledge base / Instructions
What is Docker Compose and how to install it

Docker Compose is a tool for defining and managing multi-container applications on the Docker platform. It allows you to merge multiple containers together and define all necessary settings, dependencies and relationships between them in a configuration file.