Skip to content

Commit

Permalink
alter README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fynnfluegge authored May 31, 2024
1 parent fe9e1e2 commit 12d1a19
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
## A zenful dev environment with tools for 10x productivity

<div align="center">
<img width="640" src="https://github.com/fynnfluegge/zendevenv/assets/16321871/4ea2ecb5-d186-4b54-bef3-879b40fc7587">

# A zenful dev environment with tools for 10x productivity

<img width="640" src="https://github.com/fynnfluegge/zendevenv/assets/16321871/4ea2ecb5-d186-4b54-bef3-879b40fc7587">

[![Publish Docker image](https://github.com/fynnfluegge/zenbox/actions/workflows/publish-docker-image.yml/badge.svg)](https://github.com/fynnfluegge/zenbox/actions/workflows/publish-docker-image.yml)

</div>



## Preinstalled tools

- [tmux](https://github.com/tmux/tmux)
Expand All @@ -30,20 +32,27 @@

## Run dev environment with docker

#### Build docker image
#### Download docker image

```
docker image pull fynnfluegge/zenbox:latest
```

#### Build docker image from source

```
docker build -t my-dev-environment .
git clone https://github.com/fynnfluegge/zenbox
cd zenbox && docker build -t fynnfluegge/zenbox:latest .
```

#### Start docker container

```
docker run --privileged -it -p 2375:2375 --name dev-container my-dev-environment
docker run --privileged -it -p 2375:2375 --name zenbox fynnfluegge/zenbox:latest
```

#### Reconnect to docker container

```
docker restart dev-container && docker attach dev-container
docker restart zenbox && docker attach zenbox
```

0 comments on commit 12d1a19

Please sign in to comment.