Skip to content
Merged
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
11 changes: 11 additions & 0 deletions docs/workshops/advanced/bootstrap.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,17 @@ COMPOSE_PROFILES=lso docker compose up
This will also enable LSO, so network devices will be actually configured. If you don't want this, just use:

### Local environment

The environment requires several ports to be free.
Use either command below to check if any are in use. No output means they're available:

```
netstat -tulnp | grep -E ':80|:3000|:4000|:5432|:5678|:8000|:8001|:8080'
ss -tulnp|grep -E ':80|:3000|:4000|:5432|:5678|:8000|:8001|:8080'
```

Start the containers:

```
docker compose up -d
```
Expand Down