Merge pull request #131 from gracenoah/patch-1

Fix some quotes in the readme
pull/134/head
Tõnis Tiigi 5 years ago committed by GitHub
commit 5b974158f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -577,23 +577,23 @@ Note: Design of bake command is work in progress, the user experience may change
Example HCL defintion:
```
group “default” {
targets = [“db”, “webapp-dev”]
group "default" {
targets = ["db", "webapp-dev"]
}
target “webapp-dev” {
target "webapp-dev" {
dockerfile = "Dockerfile.webapp"
tags = ["docker.io/username/webapp"]
}
target “webapp-release” {
inherits = [“webapp-dev”]
platforms = [“linux/amd64”, “linux/arm64”]
target "webapp-release" {
inherits = ["webapp-dev"]
platforms = ["linux/amd64", "linux/arm64"]
}
target “db” {
target "db" {
dockerfile = "Dockerfile.db"
tags = [“docker.io/username/db”]
tags = ["docker.io/username/db"]
}
```

Loading…
Cancel
Save