# How to detach from a container without stopping it?

To detach from a container without stopping it, you can use the `CTRL + P` followed by `CTRL + Q` key sequence while attached to the container using the `docker attach` command or by running the container in attached mode using the `-it` flag.

For example, if you are attached to a running container using the `docker attach` command, you can use the following key sequence to detach from the container:

Alternatively, you can start a container in detached mode using the `-d` flag and then attach to it later using the `docker attach` command. To start a container in detached mode, use the following command:

```bash
docker run -d <image-name>
```

Replace `<image-name>` with the name of the Docker image you want to run. This command starts the container in the background and returns its container ID. You can then attach to the container later using the following command:

```bash
docker attach <container-id>
```

Replace `<container-id>` with the container ID you obtained when you started the container in detached mode. Once attached to the container, you can use the `CTRL + P` followed by `CTRL + Q` key sequence to detach from the container without stopping it.