docker-compose.yaml 421 B

12345678910111213141516171819202122
  1. services:
  2. cgit:
  3. image: joseluisq/alpine-cgit
  4. pull_policy: always
  5. restart: always
  6. environment:
  7. CGIT_TITLE: Test git server
  8. CGIT_DESC: Test server, please ignore
  9. volumes:
  10. - ./var/repos:/srv/git
  11. anubis:
  12. image: ko.local/anubis
  13. environment:
  14. BIND: ":8005"
  15. TARGET: http://cgit:80
  16. USE_REMOTE_ADDRESS: "true"
  17. ports:
  18. - 8005:8005
  19. volumes:
  20. cgit-data: