Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryanlinjui/seedlabs-docker-container
SEED Labs with Docker Container Environment.
https://github.com/ryanlinjui/seedlabs-docker-container
containers docker docker-container labs seed seed-labs
Last synced: 3 days ago
JSON representation
SEED Labs with Docker Container Environment.
- Host: GitHub
- URL: https://github.com/ryanlinjui/seedlabs-docker-container
- Owner: ryanlinjui
- License: mit
- Created: 2024-05-06T12:07:19.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-06-03T04:26:28.000Z (8 months ago)
- Last Synced: 2024-06-03T05:38:37.557Z (8 months ago)
- Topics: containers, docker, docker-container, labs, seed, seed-labs
- Language: Dockerfile
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SEED Labs Docker Container Environment.
Modyfied by [SeedLab Setup](https://github.com/seed-labs/seed-labs/blob/master/manuals/cloud/seedvm-cloud.md)
## Support Tools and Software
- [x] Utilities Tools and Libraries
- [x] Vncserver (TigerVNC)
- [x] Desktop Environment (xfce4)
- [x] Docker
- [ ] Wireshark
- [x] Firefox
- [ ] VSCode## Setup SeedLab Environment with Docker Container
### Build Docker Image
```bash
docker build -t seedlab .
```### Run in Docker Container
```bash
docker run -it --rm --privileged -p 5901:5901 -v .:/root/Desktop seedlab
```### You can connect to the VNC server using the following URL:
```
vnc://localhost:5901
```
> Password: `password`, you can change it in the Dockerfile.### Reference
- [VNC Server in Docker Container](https://medium.com/@gustav0.lewin/how-to-make-a-docker-container-with-vnc-access-f607958141ae)
- [JacobLinCool's Dockerfile](https://github.com/JacobLinCool/ntnu-information-security-2024)