Skip to content
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

Use sudo in VMWare blog post #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _posts/2018-10-08-Pushing-Images-to-VMWare.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ inject user credentials to virtual machines, we must perform that task ourselves
the blueprint. Use the following command to extract the blueprint to a ```example-http-server.toml```
file in the current directory:

$ composer-cli blueprints save example-http-server
$ sudo composer-cli blueprints save example-http-server

Add the following lines to the end of the ```example-http-server.toml``` file to set
the initial root ```password``` to ```foobar```. You can also use a crypted password
Expand All @@ -62,7 +62,7 @@ string for the ```password``` or set an SSH ```key```.

Now save the blueprint back into composer with the following command:

$ composer-cli blueprints push example-http-server.toml
$ sudo composer-cli blueprints push example-http-server.toml

We run the following command to start a compose. Notice that we pass the image type
of ```vmdk``` which indicates we want an image appropriate for pushing to
Expand Down