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
- Host: GitHub
- URL: https://github.com/gaving/lilypad
- Owner: gaving
- Created: 2023-01-04T13:29:22.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-11-07T19:25:29.000Z (almost 2 years ago)
- Last Synced: 2025-02-13T17:15:33.017Z (8 months ago)
- Topics: docker, lilypad, nodejs, review-tools
- Language: JavaScript
- Homepage:
- Size: 2.47 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```