• This project
    • Loading...
  • Sign in

万朱浩 / Venue-Ops

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • Venue-Ops
  • infra
  • docker
  • docker-compose.override.yml
  • refactor: reorganize venue ops platform structure · ed116dc2
    ed116dc2 Browse Files
    Avolons authored 2026-04-28 14:01:39 +0800
docker-compose.override.yml 442 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
services:
  bettafish:
    image: bettafish-local:latest
    build:
      context: ../..
      dockerfile: infra/docker/Dockerfile
    env_file:
      - ../../.env
    depends_on:
      db:
        condition: service_healthy

  db:
    healthcheck:
      test:
        - CMD-SHELL
        - pg_isready -U ${POSTGRES_USER:-bettafish} -d ${POSTGRES_DB:-bettafish}
      interval: 10s
      timeout: 5s
      retries: 10
      start_period: 20s