Docker run container linux

Run your image as a container

Estimated reading time: 10 minutes

Prerequisites

Work through the steps to build a Node JS image in Build your Node image.

Overview

In the previous module we created our sample application and then we created a Dockerfile that we used to create an image. We created our image using the command docker build . Now that we have an image, we can run that image and see if our application is running correctly.

A container is a normal operating system process except that this process is isolated and has its own file system, its own networking, and its own isolated process tree separate from the host.

To run an image inside of a container, we use the docker run command. The docker run command requires one parameter and that is the image name. Let’s start our image and make sure it is running correctly. Execute the following command in your terminal.

When you run this command, you’ll notice that you were not returned to the command prompt. This is because our application is a REST server and will run in a loop waiting for incoming requests without return control back to the OS until we stop the container.

Let’s open a new terminal then make a GET request to the server using the curl command.

Our curl command failed because the connection to our server was refused. It means that we were not able to connect to localhost on port 8000. This is expected because our container is running in isolation which includes networking. Let’s stop the container and restart with port 8000 published on our local network.

To stop the container, press ctrl-c. This will return you to the terminal prompt.

To publish a port for our container, we’ll use the —publish flag ( -p for short) on the docker run command. The format of the —publish command is [host port]:[container port] . So if we wanted to expose port 8000 inside the container to port 3000 outside the container, we would pass 3000:8000 to the —publish flag.

Start the container and expose port 8000 to port 8000 on the host.

Now let’s rerun the curl command from above. Remember to open a new terminal.

Success! We were able to connect to the application running inside of our container on port 8000. Switch back to the terminal where your container is running and you should see the POST request logged to the console.

2020-09-01T17:36:09:8770 INFO: POST /test

Press ctrl-c to stop the container.

Run in detached mode

This is great so far, but our sample application is a web server and we should not have to have our terminal connected to the container. Docker can run your container in detached mode or in the background. To do this, we can use the —detach or -d for short. Docker will start your container the same as before but this time will “detach” from the container and return you to the terminal prompt.

Docker started our container in the background and printed the Container ID on the terminal.

Again, let’s make sure that our container is running properly. Run the same curl command from above.

List containers

Since we ran our container in the background, how do we know if our container is running or what other containers are running on our machine? Well, we can run the docker ps command. Just like on Linux, to see a list of processes on your machine we would run the ps command. In the same spirit, we can run the docker ps command which will show us a list of containers running on our machine.

The ps command tells a bunch of stuff about our running containers. We can see the Container ID, The image running inside the container, the command that was used to start the container, when it was created, the status, ports that exposed and the name of the container.

You are probably wondering where the name of our container is coming from. Since we didn’t provide a name for the container when we started it, Docker generated a random name. We’ll fix this in a minute but first we need to stop the container. To stop the container, run the docker stop command which does just that, stops the container. You will need to pass the name of the container or you can use the container id.

Now rerun the docker ps command to see a list of running containers.

Stop, start, and name containers

Docker containers can be started, stopped and restarted. When we stop a container, it is not removed but the status is changed to stopped and the process inside of the container is stopped. When we ran the docker ps command, the default output is to only show running containers. If we pass the —all or -a for short, we will see all containers on our system whether they are stopped or started.

If you’ve been following along, you should see several containers listed. These are containers that we started and stopped but have not been removed.

Let’s restart the container that we just stopped. Locate the name of the container we just stopped and replace the name of the container below in the restart command.

Now, list all the containers again using the ps command.

Notice that the container we just restarted has been started in detached mode and has port 8000 exposed. Also, observe the status of the container is “Up X seconds”. When you restart a container, it will be started with the same flags or commands that it was originally started with.

Let’s stop and remove all of our containers and take a look at fixing the random naming issue.

Stop the container we just started. Find the name of your running container and replace the name in the command below with the name of the container on your system.

Now that all of our containers are stopped, let’s remove them. When a container is removed, it is no longer running nor is it in the stopped status. However, the process inside the container has been stopped and the metadata for the container has been removed.

To remove a container, simple run the docker rm command passing the container name. You can pass multiple container names to the command in one command.

Again, make sure you replace the containers names in the below command with the container names from your system.

Run the docker ps —all command again to see that all containers are gone.

Now let’s address the pesky random name issue. Standard practice is to name your containers for the simple reason that it is easier to identify what is running in the container and what application or service it is associated with. Just like good naming conventions for variables in your code makes it simpler to read. So goes naming your containers.

To name a container, we just need to pass the —name flag to the run command.

Now, we can easily identify our container based on the name.

Читайте также:  Не удается выполнить обновление windows выполняется отмена изменений

Next steps

In this module, we took a look at running containers, publishing ports, and running containers in detached mode. We also took a look at managing containers by starting, stopping, and restarting them. We also looked at naming our containers so they are more easily identifiable. In the next module, we’ll learn how to run a database in a container and connect it to our application. See:

Feedback

Help us improve this topic by providing your feedback. Let us know what you think by creating an issue in the Docker Docs GitHub repository. Alternatively, create a PR to suggest updates.

Источник

docker run

Description

Run a command in a new container

Usage

Extended description

The docker run command first creates a writeable container layer over the specified image, and then starts it using the specified command. That is, docker run is equivalent to the API /containers/create then /containers/(id)/start . A stopped container can be restarted with all its previous changes intact using docker start . See docker ps -a to view a list of all containers.

The docker run command can be used in combination with docker commit to change the command that a container runs. There is additional detailed information about docker run in the Docker run reference.

For information on connecting a container to a network, see the “Docker network overview”.

For example uses of this command, refer to the examples section below.

Options

Name, shorthand Default Description
—add-host Add a custom host-to-IP mapping (host:ip)
—attach , -a Attach to STDIN, STDOUT or STDERR
—blkio-weight Block IO (relative weight), between 10 and 1000, or 0 to disable (default 0)
—blkio-weight-device Block IO weight (relative device weight)
—cap-add Add Linux capabilities
—cap-drop Drop Linux capabilities
—cgroup-parent Optional parent cgroup for the container
—cgroupns API 1.41+
Cgroup namespace to use (host|private) ‘host’: Run the container in the Docker host’s cgroup namespace ‘private’: Run the container in its own private cgroup namespace »: Use the cgroup namespace as configured by the default-cgroupns-mode option on the daemon (default)
—cidfile Write the container ID to the file
—cpu-count CPU count (Windows only)
—cpu-percent CPU percent (Windows only)
—cpu-period Limit CPU CFS (Completely Fair Scheduler) period
—cpu-quota Limit CPU CFS (Completely Fair Scheduler) quota
—cpu-rt-period API 1.25+
Limit CPU real-time period in microseconds
—cpu-rt-runtime API 1.25+
Limit CPU real-time runtime in microseconds
—cpu-shares , -c CPU shares (relative weight)
—cpus API 1.25+
Number of CPUs
—cpuset-cpus CPUs in which to allow execution (0-3, 0,1)
—cpuset-mems MEMs in which to allow execution (0-3, 0,1)
—detach , -d Run container in background and print container ID
—detach-keys Override the key sequence for detaching a container
—device Add a host device to the container
—device-cgroup-rule Add a rule to the cgroup allowed devices list
—device-read-bps Limit read rate (bytes per second) from a device
—device-read-iops Limit read rate (IO per second) from a device
—device-write-bps Limit write rate (bytes per second) to a device
—device-write-iops Limit write rate (IO per second) to a device
—disable-content-trust true Skip image verification
—dns Set custom DNS servers
—dns-opt Set DNS options
—dns-option Set DNS options
—dns-search Set custom DNS search domains
—domainname Container NIS domain name
—entrypoint Overwrite the default ENTRYPOINT of the image
—env , -e Set environment variables
—env-file Read in a file of environment variables
—expose Expose a port or a range of ports
—gpus API 1.40+
GPU devices to add to the container (‘all’ to pass all GPUs)
—group-add Add additional groups to join
—health-cmd Command to run to check health
—health-interval Time between running the check (ms|s|m|h) (default 0s)
—health-retries Consecutive failures needed to report unhealthy
—health-start-period API 1.29+
Start period for the container to initialize before starting health-retries countdown (ms|s|m|h) (default 0s)
—health-timeout Maximum time to allow one check to run (ms|s|m|h) (default 0s)
—help Print usage
—hostname , -h Container host name
—init API 1.25+
Run an init inside the container that forwards signals and reaps processes
—interactive , -i Keep STDIN open even if not attached
—io-maxbandwidth Maximum IO bandwidth limit for the system drive (Windows only)
—io-maxiops Maximum IOps limit for the system drive (Windows only)
—ip IPv4 address (e.g., 172.30.100.104)
—ip6 IPv6 address (e.g., 2001:db8::33)
—ipc IPC mode to use
—isolation Container isolation technology
—kernel-memory Kernel memory limit
—label , -l Set meta data on a container
—label-file Read in a line delimited file of labels
—link Add link to another container
—link-local-ip Container IPv4/IPv6 link-local addresses
—log-driver Logging driver for the container
—log-opt Log driver options
—mac-address Container MAC address (e.g., 92:d0:c6:0a:29:33)
—memory , -m Memory limit
—memory-reservation Memory soft limit
—memory-swap Swap limit equal to memory plus swap: ‘-1’ to enable unlimited swap
—memory-swappiness -1 Tune container memory swappiness (0 to 100)
—mount Attach a filesystem mount to the container
—name Assign a name to the container
—net Connect a container to a network
—net-alias Add network-scoped alias for the container
—network Connect a container to a network
—network-alias Add network-scoped alias for the container
—no-healthcheck Disable any container-specified HEALTHCHECK
—oom-kill-disable Disable OOM Killer
—oom-score-adj Tune host’s OOM preferences (-1000 to 1000)
—pid PID namespace to use
—pids-limit Tune container pids limit (set -1 for unlimited)
—platform API 1.32+
Set platform if server is multi-platform capable
—privileged Give extended privileges to this container
—publish , -p Publish a container’s port(s) to the host
—publish-all , -P Publish all exposed ports to random ports
—pull missing Pull image before running («always»|»missing»|»never»)
—read-only Mount the container’s root filesystem as read only
—restart no Restart policy to apply when a container exits
—rm Automatically remove the container when it exits
—runtime Runtime to use for this container
—security-opt Security Options
—shm-size Size of /dev/shm
—sig-proxy true Proxy received signals to the process
—stop-signal SIGTERM Signal to stop a container
—stop-timeout API 1.25+
Timeout (in seconds) to stop a container
—storage-opt Storage driver options for the container
—sysctl Sysctl options
—tmpfs Mount a tmpfs directory
—tty , -t Allocate a pseudo-TTY
—ulimit Ulimit options
—user , -u Username or UID (format: [: ])
—userns User namespace to use
—uts UTS namespace to use
—volume , -v Bind mount a volume
—volume-driver Optional volume driver for the container
—volumes-from Mount volumes from the specified container(s)
—workdir , -w Working directory inside the container

Examples

Assign name and allocate pseudo-TTY (—name, -it)

This example runs a container named test using the debian:latest image. The -it instructs Docker to allocate a pseudo-TTY connected to the container’s stdin; creating an interactive bash shell in the container. In the example, the bash shell is quit by entering exit 13 . This exit code is passed on to the caller of docker run , and is recorded in the test container’s metadata.

Capture container ID (—cidfile)

This will create a container and print test to the console. The cidfile flag makes Docker attempt to create a new file and write the container ID to it. If the file exists already, Docker will return an error. Docker will close this file when docker run exits.

Full container capabilities (—privileged)

This will not work, because by default, most potentially dangerous kernel capabilities are dropped; including cap_sys_admin (which is required to mount filesystems). However, the —privileged flag will allow it to run:

The —privileged flag gives all capabilities to the container, and it also lifts all the limitations enforced by the device cgroup controller. In other words, the container can then do almost everything that the host can do. This flag exists to allow special use-cases, like running Docker within Docker.

Set working directory (-w)

The -w lets the command being executed inside directory given, here /path/to/dir/ . If the path does not exist it is created inside the container.

Set storage driver options per container

This (size) will allow to set the container rootfs size to 120G at creation time. This option is only available for the devicemapper , btrfs , overlay2 , windowsfilter and zfs graph drivers. For the devicemapper , btrfs , windowsfilter and zfs graph drivers, user cannot pass a size less than the Default BaseFS Size. For the overlay2 storage driver, the size option is only available if the backing fs is xfs and mounted with the pquota mount option. Under these conditions, user can pass any size less than the backing fs size.

Mount tmpfs (—tmpfs)

The —tmpfs flag mounts an empty tmpfs into the container with the rw , noexec , nosuid , size=65536k options.

Mount volume (-v, —read-only)

The -v flag mounts the current working directory into the container. The -w lets the command being executed inside the current working directory, by changing into the directory to the value returned by pwd . So this combination executes the command using the container, but inside the current working directory.

When the host directory of a bind-mounted volume doesn’t exist, Docker will automatically create this directory on the host for you. In the example above, Docker will create the /doesnt/exist folder before starting your container.

Volumes can be used in combination with —read-only to control where a container writes files. The —read-only flag mounts the container’s root filesystem as read only prohibiting writes to locations other than the specified volumes for the container.

By bind-mounting the docker unix socket and statically linked docker binary (refer to get the linux binary), you give the container the full access to create and manipulate the host’s Docker daemon.

On Windows, the paths must be specified using Windows-style semantics.

The following examples will fail when using Windows-based containers, as the destination of a volume or bind mount inside the container must be one of: a non-existing or empty directory; or a drive other than C:. Further, the source of a bind mount must be a local directory, not a file.

For in-depth information about volumes, refer to manage data in containers

Add bind mounts or volumes using the —mount flag

The —mount flag allows you to mount volumes, host-directories and tmpfs mounts in a container.

The —mount flag supports most options that are supported by the -v or the —volume flag, but uses a different syntax. For in-depth information on the —mount flag, and a comparison between —volume and —mount , refer to the service create command reference.

Even though there is no plan to deprecate —volume , usage of —mount is recommended.

Publish or expose port (-p, —expose)

This binds port 8080 of the container to TCP port 80 on 127.0.0.1 of the host machine. You can also specify udp and sctp ports. The Docker User Guide explains in detail how to manipulate ports in Docker.

Note that ports which are not bound to the host (i.e., -p 80:80 instead of -p 127.0.0.1:80:80 ) will be accessible from the outside. This also applies if you configured UFW to block this specific port, as Docker manages his own iptables rules. Read more

This exposes port 80 of the container without publishing the port to the host system’s interfaces.

Set environment variables (-e, —env, —env-file)

Use the -e , —env , and —env-file flags to set simple (non-array) environment variables in the container you’re running, or overwrite variables that are defined in the Dockerfile of the image you’re running.

You can define the variable and its value when running the container:

You can also use variables that you’ve exported to your local environment:

When running the command, the Docker CLI client checks the value the variable has in your local environment and passes it to the container. If no = is provided and that variable is not exported in your local environment, the variable won’t be set in the container.

You can also load the environment variables from a file. This file should use the syntax =value (which sets the variable to the given value) or (which takes the value from the local environment), and # for comments.

Set metadata on container (-l, —label, —label-file)

A label is a key=value pair that applies metadata to a container. To label a container with two labels:

The my-label key doesn’t specify a value so the label defaults to an empty string ( «» ). To add multiple labels, repeat the label flag ( -l or —label ).

The key=value must be unique to avoid overwriting the label value. If you specify labels with identical keys but different values, each subsequent value overwrites the previous. Docker uses the last key=value you supply.

Use the —label-file flag to load multiple labels from a file. Delimit each label in the file with an EOL mark. The example below loads labels from a labels file in the current directory:

The label-file format is similar to the format for loading environment variables. (Unlike environment variables, labels are not visible to processes running inside a container.) The following example illustrates a label-file format:

You can load multiple label-files by supplying multiple —label-file flags.

For additional information on working with labels, see Labels — custom metadata in Docker in the Docker User Guide.

Connect a container to a network (—network)

When you start a container use the —network flag to connect it to a network. This adds the busybox container to the my-net network.

You can also choose the IP addresses for the container with —ip and —ip6 flags when you start the container on a user-defined network.

If you want to add a running container to a network use the docker network connect subcommand.

You can connect multiple containers to the same network. Once connected, the containers can communicate easily using only another container’s IP address or name. For overlay networks or custom plugins that support multi-host connectivity, containers connected to the same multi-host network but launched from different Engines can also communicate in this way.

Service discovery is unavailable on the default bridge network. Containers can communicate via their IP addresses by default. To communicate by name, they must be linked.

You can disconnect a container from a network using the docker network disconnect command.

Mount volumes from container (—volumes-from)

The —volumes-from flag mounts all the defined volumes from the referenced containers. Containers can be specified by repetitions of the —volumes-from argument. The container ID may be optionally suffixed with :ro or :rw to mount the volumes in read-only or read-write mode, respectively. By default, the volumes are mounted in the same mode (read write or read only) as the reference container.

Labeling systems like SELinux require that proper labels are placed on volume content mounted into a container. Without a label, the security system might prevent the processes running inside the container from using the content. By default, Docker does not change the labels set by the OS.

To change the label in the container context, you can add either of two suffixes :z or :Z to the volume mount. These suffixes tell Docker to relabel file objects on the shared volumes. The z option tells Docker that two containers share the volume content. As a result, Docker labels the content with a shared content label. Shared volume labels allow all containers to read/write content. The Z option tells Docker to label the content with a private unshared label. Only the current container can use a private volume.

Attach to STDIN/STDOUT/STDERR (-a)

The -a flag tells docker run to bind to the container’s STDIN , STDOUT or STDERR . This makes it possible to manipulate the output and input as needed.

This pipes data into a container and prints the container’s ID by attaching only to the container’s STDIN .

This isn’t going to print anything unless there’s an error because we’ve only attached to the STDERR of the container. The container’s logs still store what’s been written to STDERR and STDOUT .

This is how piping a file into a container could be done for a build. The container’s ID will be printed after the build is done and the build logs could be retrieved using docker logs . This is useful if you need to pipe a file or something else into a container and retrieve the container’s ID once the container has finished running.

Add host device to container (—device)

It is often necessary to directly expose devices to a container. The —device option enables that. For example, a specific block storage device or loop device or audio device can be added to an otherwise unprivileged container (without the —privileged flag) and have the application directly access it.

By default, the container will be able to read , write and mknod these devices. This can be overridden using a third :rwm set of options to each —device flag. If the container is running in privileged mode, then the permissions specified will be ignored.

The —device option cannot be safely used with ephemeral devices. Block devices that may be removed should not be added to untrusted containers with —device .

For Windows, the format of the string passed to the —device option is in the form of —device= / . Beginning with Windows Server 2019 and Windows 10 October 2018 Update, Windows only supports an IdType of class and the Id as a device interface class GUID. Refer to the table defined in the Windows container docs for a list of container-supported device interface class GUIDs.

If this option is specified for a process-isolated Windows container, all devices that implement the requested device interface class GUID are made available in the container. For example, the command below makes all COM ports on the host visible in the container.

The —device option is only supported on process-isolated Windows containers. This option fails if the container isolation is hyperv or when running Linux Containers on Windows (LCOW).

Access an NVIDIA GPU

The —gpusВ­ flag allows you to access NVIDIA GPU resources. First you need to install nvidia-container-runtime. Visit Specify a container’s resources for more information.

To use —gpus , specify which GPUs (or all) to use. If no value is provied, all available GPUs are used. The example below exposes all available GPUs.

Use the device option to specify GPUs. The example below exposes a specific GPU.

The example below exposes the first and third GPUs.

Restart policies (—restart)

Use Docker’s —restart to specify a container’s restart policy. A restart policy controls whether the Docker daemon restarts a container after exit. Docker supports the following restart policies:

Policy Result
no Do not automatically restart the container when it exits. This is the default.
on-failure[:max-retries] Restart only if the container exits with a non-zero exit status. Optionally, limit the number of restart retries the Docker daemon attempts.
unless-stopped Restart the container unless it is explicitly stopped or Docker itself is stopped or restarted.
always Always restart the container regardless of the exit status. When you specify always, the Docker daemon will try to restart the container indefinitely. The container will also always start on daemon startup, regardless of the current state of the container.

This will run the redis container with a restart policy of always so that if the container exits, Docker will restart it.

More detailed information on restart policies can be found in the Restart Policies (—restart) section of the Docker run reference page.

Add entries to container hosts file (—add-host)

You can add other hosts into a container’s /etc/hosts file by using one or more —add-host flags. This example adds a static address for a host named docker :

Sometimes you need to connect to the Docker host from within your container. To enable this, pass the Docker host’s IP address to the container using the —add-host flag. To find the host’s address, use the ip addr show command.

The flags you pass to ip addr show depend on whether you are using IPv4 or IPv6 networking in your containers. Use the following flags for IPv4 address retrieval for a network device named eth0 :

For IPv6 use the -6 flag instead of the -4 flag. For other network devices, replace eth0 with the correct device name (for example docker0 for the bridge device).

Set ulimits in container (—ulimit)

Since setting ulimit settings in a container requires extra privileges not available in the default container, you can set these using the —ulimit flag. —ulimit is specified with a soft and hard limit as such: = [: ] , for example:

If you do not provide a hard limit , the soft limit is used for both values. If no ulimits are set, they are inherited from the default ulimits set on the daemon. The as option is disabled now. In other words, the following script is not supported:

The values are sent to the appropriate syscall as they are set. Docker doesn’t perform any byte conversion. Take this into account when setting the values.

For nproc usage

Be careful setting nproc with the ulimit flag as nproc is designed by Linux to set the maximum number of processes available to a user, not to a container. For example, start four containers with daemon user:

The 4th container fails and reports “[8] System error: resource temporarily unavailable” error. This fails because the caller set nproc=3 resulting in the first three containers using up the three processes quota set for the daemon user.

Stop container with signal (—stop-signal)

The —stop-signal flag sets the system call signal that will be sent to the container to exit. This signal can be a signal name in the format SIG , for instance SIGKILL , or an unsigned number that matches a position in the kernel’s syscall table, for instance 9 .

The default is SIGTERM if not specified.

Optional security options (—security-opt)

On Windows, this flag can be used to specify the credentialspec option. The credentialspec must be in the format file://spec.txt or registry://keyname .

Stop container with timeout (—stop-timeout)

The —stop-timeout flag sets the number of seconds to wait for the container to stop after sending the pre-defined (see —stop-signal ) system call signal. If the container does not exit after the timeout elapses, it is forcibly killed with a SIGKILL signal.

If —stop-timeout is set to -1 , no timeout is applied, and the daemon will wait indefinitely for the container to exit.

The default is determined by the daemon, and is 10 seconds for Linux containers, and 30 seconds for Windows containers.

Specify isolation technology for container (—isolation)

This option is useful in situations where you are running Docker containers on Windows. The —isolation option sets a container’s isolation technology. On Linux, the only supported is the default option which uses Linux namespaces. These two commands are equivalent on Linux:

On Windows, —isolation can take one of these values:

Value Description
default Use the value specified by the Docker daemon’s —exec-opt or system default (see below).
process Shared-kernel namespace isolation (not supported on Windows client operating systems older than Windows 10 1809).
hyperv Hyper-V hypervisor partition-based isolation.

The default isolation on Windows server operating systems is process . The default isolation on Windows client operating systems is hyperv . An attempt to start a container on a client operating system older than Windows 10 1809 with —isolation process will fail.

On Windows server, assuming the default configuration, these commands are equivalent and result in process isolation:

If you have set the —exec-opt isolation=hyperv option on the Docker daemon , or are running against a Windows client-based daemon, these commands are equivalent and result in hyperv isolation:

Specify hard limits on memory available to containers (-m, —memory)

These parameters always set an upper limit on the memory available to the container. On Linux, this is set on the cgroup and applications in a container can query it at /sys/fs/cgroup/memory/memory.limit_in_bytes .

On Windows, this will affect containers differently depending on what type of isolation is used.

With process isolation, Windows will report the full memory of the host system, not the limit to applications running inside the container

With hyperv isolation, Windows will create a utility VM that is big enough to hold the memory limit, plus the minimal OS needed to host the container. That size is reported as “Total Physical Memory.”

Configure namespaced kernel parameters (sysctls) at runtime

The —sysctl sets namespaced kernel parameters (sysctls) in the container. For example, to turn on IP forwarding in the containers network namespace, run this command:

Not all sysctls are namespaced. Docker does not support changing sysctls inside of a container that also modify the host system. As the kernel evolves we expect to see more sysctls become namespaced.

Currently supported sysctls

  • kernel.msgmax , kernel.msgmnb , kernel.msgmni , kernel.sem , kernel.shmall , kernel.shmmax , kernel.shmmni , kernel.shm_rmid_forced .
  • Sysctls beginning with fs.mqueue.*
  • If you use the —ipc=host option these sysctls are not allowed.
  • Sysctls beginning with net.*
  • If you use the —network=host option using these sysctls are not allowed.

Источник

Читайте также:  Драйвера hp laserjet 2400 для windows 10
Оцените статью