qubed/compose.yaml
2025-02-26 09:11:30 +00:00

46 lines
1.0 KiB
YAML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

services:
# redis server holds the catalog data blob
redis:
image: redis:alpine
container_name: redis
command: ["redis-server", "--appendonly", "yes"]
volumes:
- ./redis-data:/data
ports:
- "6379:6379"
restart: always
# STAC Server
stac_server:
# image: stac-server:latest
container_name: stac_server
build:
context: .
dockerfile: Dockerfile
target: stac_server
ports:
- "8124:8080"
environment:
- REDIS_HOST=redis
- CONFIG_DIR=/config
volumes:
- ./stac_server:/code/stac_server
- ./TreeTraverser:/code/TreeTraverser
# restart: always
# web_query_builder:
# # image: web_query_builder:latest
# container_name: web_query_builder
# build:
# context: .
# dockerfile: Dockerfile
# target: web_query_builder
# ports:
# - "8125:8080"
# environment:
# - CONFIG_DIR=/config
# volumes:
# - ./web_query_builder:/code/web_query_builder
# restart: always