Skip to content

Commit

Permalink
POD-823: Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bkneis committed Sep 2, 2024
1 parent 4e735ec commit 3846554
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ Dockerless is a tool that allows you to build and run Docker containers without

## Installation

For example, to build an image:
WARN: running dockerless on your host can delete key files and destroy your working environment.

For example, to build an image, run the following in the gcr.io/kaniko-project/executor image:

``` bash
dockerless build --dockerfile Dockerfile --context .
Expand All @@ -20,3 +22,13 @@ And to run a container:
``` bash
dockerless start
```

## Development

Build dockerless and new image

```bash
just build
cp dist/dockerless_{arch}/dockerless .
docker build -t {repo}/dockerless:{tag} -f Dockerfile --build-arg TARGETARCH=$(uname -m) --build-arg TARGETOS=linux .
```

0 comments on commit 3846554

Please sign in to comment.