A few installation notes before installation steps:
- Requires TCP/21216 open
# Install dependencies
./bin/install
# Build Docker image
./bin/build
# Run Docker container
./bin/run
You can add users via
# Get docker container ID
sudo docker ps
# Run bash in that container
./bin/bash [CONTAINER_ID]
# Create a user
useradd -ms /bin/bash [USER]
passwd [USER]
Now, you can access from [IP]:21216
- Add mechanism for modifying a container nicely and commit the image without disrupting service too much