Skip to content

Commit

Permalink
Make sure shared /home is set to "nocopy" to avoid race conditions (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherwharrop-noaa authored Nov 1, 2024
1 parent 79fdc24 commit f0daa69
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
hostname: slurmmaster
user: admin
volumes:
- shared-vol:/home/admin
- shared-vol:/home/admin:nocopy
environment:
- SLURM_CPUS_ON_NODE=8
ports:
Expand All @@ -39,7 +39,7 @@ services:
hostname: slurmnode1
user: admin
volumes:
- shared-vol:/home/admin
- shared-vol:/home/admin:nocopy
environment:
- SLURM_NODENAME=slurmnode1
- SLURM_CPUS_ON_NODE=8
Expand All @@ -55,7 +55,7 @@ services:
hostname: slurmnode2
user: admin
volumes:
- shared-vol:/home/admin
- shared-vol:/home/admin:nocopy
environment:
- SLURM_NODENAME=slurmnode2
- SLURM_CPUS_ON_NODE=8
Expand All @@ -71,7 +71,7 @@ services:
hostname: slurmnode3
user: admin
volumes:
- shared-vol:/home/admin
- shared-vol:/home/admin:nocopy
environment:
- SLURM_NODENAME=slurmnode3
- SLURM_CPUS_ON_NODE=8
Expand Down

0 comments on commit f0daa69

Please sign in to comment.