> For the complete documentation index, see [llms.txt](https://docs.orbs.network/v3/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.orbs.network/v3/orbs-vm/step-by-step-overview/docker-image-implementation/working-directory.md).

# Working Directory

The working directory of your container is required to be `/opt/orbs` in order to conform with the protocol and allow the nodes to serve logs and status from the correct location. The orchestrator mounts this path explicitly.

You are allowed to create subdirectories inside this directory.

## Dockerfile example

The working directory should be defined in your Dockerfile like this:

```docker
# standard working directory
WORKDIR /opt/orbs
```
