54 lines
631 B
Markdown
54 lines
631 B
Markdown
# What the F***
|
|
|
|
It s a studies environment for classroom with web client ssh access
|
|
|
|
|
|
## User liste
|
|
|
|
add list of users in ./data/liste with the format :
|
|
|
|
```
|
|
NAME Surname
|
|
NAME2 Surname2
|
|
```
|
|
|
|
## Build Docker image
|
|
|
|
```
|
|
docker build . -t isensshbase
|
|
```
|
|
|
|
## environement generation
|
|
|
|
launch script
|
|
|
|
```
|
|
./generate.sh
|
|
```
|
|
|
|
it create
|
|
- docker-compose.yml
|
|
- create fake file partition on the hosts system access in ./data/students/part/.
|
|
|
|
## start docker stack
|
|
|
|
```
|
|
docker-compose up -d
|
|
```
|
|
|
|
## regen a specific instance
|
|
|
|
```
|
|
regen_inst.sh
|
|
```
|
|
|
|
## Delete all
|
|
|
|
```
|
|
docker-compose down
|
|
./generate.sh del
|
|
rm docker-compose.yml
|
|
```
|
|
|
|
|