Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 1.55 KB

README.md

File metadata and controls

51 lines (42 loc) · 1.55 KB

Docker Slurm

Slurm Cluster in Ubuntu Docker Images Using Docker Compose

This is an installation of a Slurm cluster inside Docker.

This is an adaptation of the work done by Rodrigo Ancavil del Pino:

https://medium.com/analytics-vidhya/slurm-cluster-with-docker-9f242deee601

There are three containers:

  • A front-end container that acts as a Slurm cluster front-end node
  • A master container that acts as a Slurm master node
  • A node container that acts as a Slurm compute node

These containers are launched using Docker Compose to build a fully functioning Slurm cluster. A docker-compose.yml file defines the cluster, specifying ports and volumes to be shared. Multiple instances of the node container can be used to create clusters of different sizes. The cluster behaves as if it were running on multiple nodes even if the containers are all running on the same host machine.

Quick Start

To start the slurm cluster environment:

docker-compose -f docker-compose.yml up -d

To stop the cluster:

docker-compose -f docker-compose.yml stop

To check the cluster logs:

docker-compose -f docker-compose.yml logs -f

(stop logs with CTRL-c")

To check status of the cluster containers:

docker-compose -f docker-compose.yml ps

To check status of Slurm:

docker exec slurm-frontend sinfo

To run a Slurm job:

docker exec slurm-frontend srun hostname