An open API service indexing awesome lists of open source software.

https://github.com/gaving/lilypad

🟢 Web front-end for Docker containers
https://github.com/gaving/lilypad

docker lilypad nodejs review-tools

Last synced: 6 months ago
JSON representation

🟢 Web front-end for Docker containers

Awesome Lists containing this project

README

          

# Lilypad

Web front-end for Docker containers

## Build

```bash
docker build \
--build-arg REACT_APP_CONTAINER_TAG=org.domain.review.name \
--build-arg REACT_APP_CONTAINER_DESC=org.domain.review.desc \
--build-arg REACT_APP_CONTAINER_ICON=org.domain.review.icon \
--build-arg REACT_APP_LAUNCH_URL=org.domain.review.url \
-t lilypad:latest .
```

## Run

### Interface

```bash
docker run -it -P -v /var/run/docker.sock:/var/run/docker.sock lilypad:latest
```

### Containers

```bash
for i in red yellow green; \
docker run --platform linux/amd64 -P -d \
-l org.domain.review.desc="$i branch feature" \
-l org.domain.review.name=whoami \
-l org.domain.review.icon=smile \
-l org.domain.review.url=https://$i.local/ containous/whoami
```