12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- # format 3.x, validated on W10 - there is no "mode/uid/gid" for docker-compose 1.29/W10
- # you should provide your private/public RSA key in ./ssh dir (named id_rsa.mpi/id_rsa.mpi.pub)
- # docker swarm init, then you have to do // note version_mpinet is the name of the overlay
- # docker network create --driver=overlay --attachable yml_mpinet
- # with xmp and telegraf
- # Dec, 12, 2022 - Jean-Michel Batto
- version: "3.9"
- services:
- grafana:
- container_name: influxdb_local
- image: philhawthorne/docker-influxdb-grafana:latest
- volumes:
- - /var/run/docker.sock:/var/run/docker.sock
- - usrlocalinfluxdb-foo:/var/lib/influxdb
- - usrlocalgrafana-foo:/var/lib/grafana
- ports:
- - "3003:3003"
- - "3004:8083"
- - "8086:8086"
- networks:
- - mpinet
- mpihead:
- image: jmbatto/m2chps-mpi41-xmp:latest
- volumes:
- - /var/run/docker.sock:/var/run/docker.sock
- - usrlocalvarmpi-foo:/usr/local/var/mpishare
- shm_size: '512m'
- ports:
- - "2022:22"
- links:
- - mpinode
- networks:
- - mpinet
- secrets:
- - source: "id_rsa"
- target: "/home/mpiuser/.ssh-source/id_rsa"
- - source: "id_rsa_mpi_pub"
- target: "/home/mpiuser/.ssh-source/id_rsa.pub"
- - source: "authorized_keys"
- target: "/home/mpiuser/.ssh-source/authorized_keys"
- depends_on:
- - grafana
- mpinode:
- image: jmbatto/m2chps-mpi41-xmp:latest
- volumes:
- - /var/run/docker.sock:/var/run/docker.sock
- - usrlocalvarmpi-foo:/usr/local/var/mpishare
- shm_size: '512m'
- networks:
- - mpinet
- secrets:
- - source: "id_rsa"
- target: "/home/mpiuser/.ssh-source/id_rsa"
- - source: "id_rsa_mpi_pub"
- target: "/home/mpiuser/.ssh-source/id_rsa.pub"
- - source: "authorized_keys"
- target: "/home/mpiuser/.ssh-source/authorized_keys"
- depends_on:
- - grafana
- secrets:
- id_rsa_mpi_pub:
- file: ssh/id_rsa.mpi.pub
- id_rsa:
- file: ssh/id_rsa.mpi
- authorized_keys:
- file: ssh/id_rsa.mpi.pub
- networks:
- mpinet:
- external: true
- name : yml_mpinet
- driver: overlay
- volumes:
- usrlocalvarmpi-foo:
- usrlocalgrafana-foo:
- usrlocalinfluxdb-foo:
-
|