docker-compose.yaml 317 B

12345678910111213141516
  1. services:
  2. git:
  3. image: ghcr.io/kutespaces/simple-git-http-server
  4. pull_policy: always
  5. restart: always
  6. volumes:
  7. - ./var/repos:/git
  8. anubis:
  9. image: ko.local/anubis
  10. environment:
  11. BIND: ":3000"
  12. TARGET: http://git:80
  13. USE_REMOTE_ADDRESS: "true"
  14. ports:
  15. - 3000:3000