qubed/compose.yaml
2025-03-28 18:08:31 +00:00

33 lines
717 B
YAML
Raw Permalink 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:
# STAC Server
stac_server:
# image: stac-server:latest
container_name: stac_server
build:
context: .
dockerfile: Dockerfile
target: stac_server
ports:
- "8124:80"
environment:
- CONFIG_DIR=/config
volumes:
- ./stac_server:/code/stac_server
# 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:80"
environment:
- API_URL=http://127.0.0.1:8124/api/v1/stac/climate-dt
volumes:
- ./web_query_builder:/code/web_query_builder
restart: always