Package Exports
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@msfeldstein/mcp-test-servers) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Ubuntu SSH Docker Container
This project provides a Docker container running Ubuntu with SSH access.
Setup
Make sure you have Docker and Docker Compose installed on your system.
Create a shared directory for file exchange between host and container:
mkdir -p sharedBuild and start the container:
docker-compose up -d
Accessing the Container
SSH Access
Connect to the container using SSH:
ssh ubuntu@localhost -p 2222Password: ubuntu
You can also connect as root:
ssh root@localhost -p 2222Password: root
Direct Container Access
You can also access the container directly using Docker:
docker exec -it ubuntu-ssh bashShared Files
The ./shared directory on your host is mounted to /home/ubuntu/shared in the container. You can use this to exchange files between your host and the container.
Stopping the Container
To stop the container:
docker-compose down