-
Notifications
You must be signed in to change notification settings - Fork 771
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update documentation to reflect build/push and v3 changes #648
Conversation
cdrage
commented
Jun 15, 2017
•
edited
Loading
edited
4200987
to
530f320
Compare
docs/user-guide.md
Outdated
```console | ||
$ cd examples/ | ||
```sh | ||
cd examples/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please keep those $
otherwise it is hard to know which is command and which is output
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@surajssd Actually, it's harder to copy/paste if it stays... Most guides I've seen online don't include the $ which isn't exactly standard across all terminals (some people use fish, zsh, etc.)
530f320
to
3a622aa
Compare
3a622aa
to
6409674
Compare
Updated it with your changes @surajssd ready for another doc review @kadel @surajssd or @surajnarwade |
c5e01f0
to
1dc9659
Compare
docs/user-guide.md
Outdated
@@ -78,7 +81,7 @@ INFO Kubernetes file "mongodb-claim0-persistentvolumeclaim.yaml" created | |||
INFO Kubernetes file "redis-master-deployment.yaml" created | |||
INFO Kubernetes file "redis-slave-deployment.yaml" created | |||
|
|||
$ ls | |||
ls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$
is missing
@cdrage , only one comment, otherwise LGTM :) |
docs/user-guide.md
Outdated
## Building and Pushing Docker Images | ||
|
||
Kompose supports both building and pushing Docker images. When using the `build` key within your Docker Compose file, your image will automatically be built and pushed. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe it's clear, but it might be good to add a sentence explaining where the image will be pushed to.
Adds a user guide on how to use the build/push functionality of Docker images to the user guide. Adds v3 documentation as well as cleans up the user guide as well. I also do minor changes such as removing `$ ` in the CLI examples, as it's easier to copy and paste without the `$ ` there (when double clicking). I've also changed the `console` yaml indicitors to `sh` since it doesn't matter / it's aliased, see: https://github.com/github/linguist/blob/master/lib/linguist/languages.yml
1dc9659
to
b903789
Compare
LGTM :) |