If you always want to use a destination, and have a base deploy.yml file that doesn't specify any hosts, then if you forget to specific the destination you will get a cryptic error. Add a "require_destination" setting you can use to avoid this.
8 lines
162 B
YAML
8 lines
162 B
YAML
service: app
|
|
image: dhh/app
|
|
registry:
|
|
server: registry.digitalocean.com
|
|
username: <%= "my-user" %>
|
|
password: <%= "my-password" %>
|
|
require_destination: true
|