Skip to Content
👷Please note that Dboxed is in a very early stage, including the documentation. Things are being built right now! 👷 Follow @codablock on X for updates!
DocsBoxesDocker Compose

Docker Compose

Boxes define their workloads via Docker Compose  projects. All features of standard Docker Compose are supported.

In addition, dboxed adds a new volume type named dboxed, which can be used to access attached dboxed volumes. An example of this can be found in the volumes documentation.

Creating boxes with a compose project

To create a box with a docker compose project attached to it, pass --compose-file to the dboxed box create command.

As an example, consider the following compose file:

docker-compose.yaml
name: example services: hello-log: image: alpine entrypoint: ["sh", "-c"] command: - | while true; do echo "Hello, current time is $(date)"; sleep 5; done

You can create a box with this compose file attached:

dboxed box create --name example --compose-file /path/to/docker-compose.yaml

The argument --compose-file can be specified multiple times, allowing you to add multiple compose projects to the new box.

Adding and removing compose projects

You can also add a compose project to an already existing box. If the box is being run on a machine, the sandbox will start it immediately.

To add the compose file from above to an existing box, run the following command:

dboxed box add-compose example --compose-file docker-compose.yaml

The argument --compose-file can be specified multiple times, allowing you to add multiple compose projects to the box.

You can also use the Web UI to add a compose project to a box. Simply navigate to the Boxes page, enter the box details and switch to the Compose Projects tab. You can add a project by clicking on Add Project.

Last updated on