Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 572 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 572 Bytes

Build alluxio-worker image and deploy container

1. https://github.com/{github_user}/wormhole.git
2. cd wormhole
3. docker build -t alluxio-master-image -f alluxio-worker/Dockerfile .
4. docker run -d --shm-size 3G -u 12345 -p 30000:30000 --net=wormhole_net --name=alluxio-worker-00 alluxio-worker-image worker

Troubleshooting

Get docker containers

docker ps

Login into the container

docker exec -it {docker_id/docker_name} /bin/bash

Check container logs

docker container logs --tail 10000 -f {docker_id/docker_name}