Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
docs(project-definition): container registry settings
Browse files Browse the repository at this point in the history
  • Loading branch information
saitho committed Mar 14, 2021
1 parent bd7f400 commit 800abe2
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Documentation/introduction/project-definition.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ domains:
username: user
password: pass
container:
registries:
# Authenticate with Docker Hub for private images
- username: mydockerhubuser
password: mydockerhubpassword
# Authenticate with custom Docker registry
- username: myuser
password: mypassword
url: https://myregistry.com
services:
- name: app # service name
image: nginxdemos/hello:latest # Docker image name
Expand Down Expand Up @@ -137,6 +145,22 @@ domains:
Right now, removing a single entry from the list and redeploying the project will NOT remove the user settings from the authentication file.
{% endhint %}

### container.registries

The following configuration options are available inside a registry definition:

#### username

Username for authentication with the container registry. Required.

#### password

Password for authentication with the container registry. Required.

#### url

URL of container registry. If none given, it will try to authenticate with Docker Hub.

### container.services

The following configuration options are available inside a service definition:
Expand Down

0 comments on commit 800abe2

Please sign in to comment.