Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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)