# Configure the Network Interface Binding

By default, the Jetty servlet engine and HTTP server used in YouTrack bind on the `0.0.0.0` network interface. For security reasons, this action may be restricted in some environments.

> **Note: YouTrack Docker Image**
> If you run the YouTrack service inside a Docker container, there is no need to change the `listen-address`. However, you can still do it, using `configure` command to change the `listen-address` property.

You can use the `configure` command to change the `listen-address` property for your YouTrack server. Execute this command on behalf of the same OS user that runs the YouTrack service. This command creates configuration files and folders. The YouTrack service user must have permission to access the files and folders that are created by this command.

Procedure: To customize the network interface binding for a Docker image:

1. [Stop the Docker container](stop-and-start-youtrack.html#stop-docker-container):

```CONSOLE
docker exec <containerId> stop
```

2. Run the `configure` command:

```CONSOLE
docker run --rm -it
-v <path to conf directory>:/opt/youtrack/conf \
-v <path to logs directory>:/opt/youtrack/logs \
jetbrains/youtrack:<version> \
configure --listen-address=<new network interface address>
```

3. Start the Docker container:

```CONSOLE
docker start <containerId>
```

