Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Missing bootstrap sub-command in examples #6

Open
wants to merge 2 commits into
base: main
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ The first build of a machine type and architecture may be quite heavy on time an
The following bootstrap a container called 'bob' using Ubuntu 22.04 *(Jammy Jellyfish)* as the base.

```bash
sudo machinespawn ubuntu-22.04 bob
sudo machinespawn bootstrap ubuntu-22.04 bob
```

Here's an example that would bootstrap a Debian 11 container called 'fred':

```bash
sudo machinespawn debian-11 fred
sudo machinespawn bootstrap debian-11 fred
```

### `list`
Expand Down Expand Up @@ -131,7 +131,7 @@ machinespawn pull-tar <URL> <Machine Name>
Downloads a .tar container image from the specified URL, and makes it available under the specified local machine name. The URL must be of type "http://" or "https://", and must refer to a .tar, .tar.gz, .tar.xz or .tar.bz2 archive file

```bash
sudo macheinespawn pull-tar https://download.fedoraproject.org/pub/fedora/linux/releases/36/Cloud/x86_64/images/Fedora-Cloud-Base-36-1.5.x86_64.raw.xz FedoraCloudBase36
sudo machinespawn pull-tar https://download.fedoraproject.org/pub/fedora/linux/releases/36/Cloud/x86_64/images/Fedora-Cloud-Base-36-1.5.x86_64.raw.xz FedoraCloudBase36
```

### `remove`
Expand Down