GuillaumeDua / CppShelf

Collection of powerfuls - C++ Single-Header Libraries Files
https://guillaumedua.github.io/CppShelf/
MIT License
9 stars 1 forks source link

[CI/docker] remote / ssh support #197

Closed GuillaumeDua closed 3 months ago

GuillaumeDua commented 6 months ago

[UPDATE]

as a multi-stage image:

FROM cpp-toolchain-dev as ssh-support
# etc.

part of #196 , but as a separated container



version: '3'
services:
  container1:
    image: sshtest
    build: .
    networks:
      - sshtest
    ports:
      - 2201:22

  container2:
    image: sshtest
    build: .
    networks:
      - sshtest
    ports:
      - 2202:22

networks:
  sshtest: