You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
699 B

5 years ago
SEC SwarmLab.io
5 years ago
====================
5 years ago
5 years ago
Orchestrate a Swarmlab SEC cluster:
5 years ago
5 years ago
+ Using Docker Compose to replicate production environment on single Docker host
# Single-host with Docker Compose
See INSTALL
Relevant files:
```
Project
├── Dockerfile # Image specification
├── project # Sample program source code
5 years ago
│ └── hello_world.c
5 years ago
├── ssh # keys for accessing
│ ├── id_rsa # (could generate your own)
│ └── id_rsa.pub
├── .env # General configuration
├── docker-compose.yml # Container orchestration
└── swarmlab-mpi # Commands wrapper ultility
5 years ago
```