You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Verify all ports are free
Found out I had some in use ports, this might be helpful to
others starting out as well.
Extracted the needed ports from docker-compose.yml using:
```
yq -r '.services[]?.ports[]? // empty' docker-compose.yml | \
grep ':' | \
sed -E 's/^"?([0-9]+):[0-9]+.*"?$/\1/' | \
sort -n | uniq
```
* Apply suggestions from code review
Co-authored-by: kvdb <[email protected]>
---------
Co-authored-by: Mark Moes <[email protected]>
Co-authored-by: kvdb <[email protected]>
0 commit comments