mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Signed-off-by: npub1t2tgm7d8f995uqvmnm8h88sg3wnpp9a5xysjf6dg3tjmgt3ltulqdp8ehr <5a968df9a7494b4e019b9ecf739e088ba61097b4312124e9a88ae5b42e3f5f3e@sprout-oss.stage.blox.sqprod.co> Signed-off-by: npub1mprnacetjua2xx3p5eddmhxyk6wv929ymm5py8kd2xfxurxahspqqlgyta <d8473ee32b973aa31a21a65adddcc4b69cc2a8a4dee8121ecd51926e0cddbc02@sprout-oss.stage.blox.sqprod.co> Co-authored-by: npub1t2tgm7d8f995uqvmnm8h88sg3wnpp9a5xysjf6dg3tjmgt3ltulqdp8ehr <5a968df9a7494b4e019b9ecf739e088ba61097b4312124e9a88ae5b42e3f5f3e@sprout-oss.stage.blox.sqprod.co> Co-authored-by: npub1mprnacetjua2xx3p5eddmhxyk6wv929ymm5py8kd2xfxurxahspqqlgyta <d8473ee32b973aa31a21a65adddcc4b69cc2a8a4dee8121ecd51926e0cddbc02@sprout-oss.stage.blox.sqprod.co>
53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
services:
|
|
postgres:
|
|
ports:
|
|
- "${POSTGRES_PORT:-5432}:5432"
|
|
|
|
redis:
|
|
ports:
|
|
- "${REDIS_PORT:-6379}:6379"
|
|
|
|
typesense:
|
|
environment:
|
|
TYPESENSE_ENABLE_CORS: "true"
|
|
ports:
|
|
- "${TYPESENSE_PORT:-8108}:8108"
|
|
|
|
minio:
|
|
ports:
|
|
- "${MINIO_API_PORT:-9000}:9000"
|
|
- "${MINIO_CONSOLE_PORT:-9001}:9001"
|
|
|
|
adminer:
|
|
image: adminer:latest
|
|
container_name: buzz-adminer
|
|
depends_on:
|
|
postgres:
|
|
condition: service_healthy
|
|
environment:
|
|
ADMINER_DEFAULT_SERVER: postgres
|
|
ports:
|
|
- "${ADMINER_PORT:-8082}:8080"
|
|
restart: unless-stopped
|
|
networks:
|
|
- buzz-net
|
|
|
|
prometheus:
|
|
image: prom/prometheus:latest
|
|
container_name: buzz-prometheus
|
|
volumes:
|
|
- ../../prometheus.yml:/etc/prometheus/prometheus.yml:ro
|
|
- buzz-prometheus-data:/prometheus
|
|
ports:
|
|
- "${PROMETHEUS_PORT:-9090}:9090"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
restart: unless-stopped
|
|
networks:
|
|
- buzz-net
|
|
|
|
volumes:
|
|
buzz-prometheus-data:
|
|
labels:
|
|
com.buzz.volume: prometheus
|