sourcebot/docker-compose.yml

24 lines
575 B
YAML
Raw Normal View History

2024-08-31 01:36:53 +00:00
version: '3'
services:
zoekt-indexserver:
build:
dockerfile: Dockerfile.zoekt-indexserver
environment:
- GITHUB_TOKEN=${GITHUB_TOKEN}
- CONFIG_PATH=/app/configs/config.json
2024-08-31 02:03:13 +00:00
- DATA_DIR=/zoekt-data/
2024-08-31 01:36:53 +00:00
volumes:
- ./configs/config.json:/app/configs/config.json:r
2024-08-31 02:03:13 +00:00
- zoekt_index_cache:/zoekt-data/
zoekt-webserver:
build:
dockerfile: Dockerfile.zoekt-webserver
environment:
- DATA_DIR=/zoekt-data/
ports:
- 6070:6070
volumes:
- zoekt_index_cache:/zoekt-data/
volumes:
zoekt_index_cache: