DrydockDrydock
ConfigurationRegistriesMAU

MAU (dock.mau.dev)

The mau registry lets you configure dock.mau.dev (GitLab-based) integration.

The mau registry lets you configure dock.mau.dev integration. Public images are supported out-of-the-box; add a token for private image access.

Variables

Env varRequiredDescriptionSupported valuesDefault value when missing
DD_REGISTRY_MAU_{REGISTRY_NAME}_TOKENPersonal access token for private images
DD_REGISTRY_MAU_{REGISTRY_NAME}_URLRegistry base URLhttps://dock.mau.dev
DD_REGISTRY_MAU_{REGISTRY_NAME}_AUTHURLAuthentication base URLhttps://dock.mau.dev

Examples

Configure for public images

Public images on dock.mau.dev work without any configuration. Simply add an empty registry entry:

services:
  drydock:
    image: codeswhat/drydock
    ...
    environment:
      - DD_REGISTRY_MAU_PUBLIC=
docker run \
  -e DD_REGISTRY_MAU_PUBLIC="" \
  ...
  codeswhat/drydock

Configure for private images

services:
  drydock:
    image: codeswhat/drydock
    ...
    environment:
      - DD_REGISTRY_MAU_PRIVATE_TOKEN=xxxxx
docker run \
  -e DD_REGISTRY_MAU_PRIVATE_TOKEN="xxxxx" \
  ...
  codeswhat/drydock

On this page