grm 0.7.5

Manage multiple git repositories. You configure the git repositories in a file, the program does the rest!
Documentation
version: "3.7"

services:
  pytest:
    build: ./docker
    volumes:
      - type: bind
        source: ./
        target: /tests
        read_only: true
      - type: tmpfs
        target: /tmp
    environment:
      TMPDIR: /tmp
    depends_on:
      - rest
    command:
      - "true"
    networks:
      main:

  rest:
    build: ./docker-rest/
    expose:
      - "5000"
    networks:
      main:
        aliases:
          - alternate-rest

networks:
  main: