Brijesh's Git Server — k3yst0n3 @ 56a7cea38a1ff614b00ca8cd80f67686f955709b

docker-compose.yaml (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
services:
  minio:
    hostname: minio
    image: quay.io/minio/minio:latest
    command: server --console-address ":9001" /data
    ports:
      - "9000:9000"
      - "9001:9001"
    expose:
      - "9000"
      - "9001"
    healthcheck:
      test: ["CMD", "mc", "ready", "local"]
      interval: 5s
      timeout: 5s
      retries: 5
    volumes:
      - data-1:/data
  k3yst0n3:
    hostname: k3yst0n3
    build: .
    depends_on:
      - minio
    ports:
      - 4000:4000

volumes:
  data-1: