Skip to content

Commit

Permalink
use ghcr for README.md demo
Browse files Browse the repository at this point in the history
  • Loading branch information
vmorganp committed Feb 1, 2023
1 parent ba539db commit 671edc0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Monitors network traffic to containers. If there is traffic, the container runs,
```
2. Start the stack
```sh
DOCKER_BUILDKIT=1 docker-compose up --build
docker-compose up
```
This will create 2 containers that you can reach through a third "lazytainer" container
3. View the running container by navigating to its web ui at `http://localhost:81`. You should see some information about the container
Expand Down
8 changes: 6 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@ version: "3"
services:
lazytainer:
container_name: lazytainer
# image: ghcr.io/vmorganp/lazytainer:master
build: .
# to build the image yourself:
# 1. comment 'image:...'
# 2. uncomment 'build: .'
# 3. instead of 'docker compose up', run 'DOCKER_BUILDKIT=1 docker-compose up --build'
image: ghcr.io/vmorganp/lazytainer:master
# build: .
environment:
- VERBOSE=true # probably set this to false unless you're debugging or doing the initial demo
ports:
Expand Down

0 comments on commit 671edc0

Please sign in to comment.