monolith/docker/docker-compose.prod.yml

60 lines
1.3 KiB
YAML
Raw Normal View History

2022-09-18 12:04:08 +00:00
version: "2.2"
services:
app:
image: pathogen/monolith:latest
2022-09-21 11:08:29 +00:00
container_name: monolith
2022-10-21 10:14:51 +00:00
build: ${PORTAINER_GIT_DIR}/docker
volumes:
- ${PORTAINER_GIT_DIR}:/code
env_file:
2022-09-05 06:20:30 +00:00
- ../stack.env
2022-10-21 10:14:51 +00:00
# volumes_from:
# - tmp
# depends_on:
2022-10-11 10:16:24 +00:00
# broker:
# condition: service_started
# kafka:
# condition: service_healthy
2022-10-21 10:14:51 +00:00
# tmp:
# condition: service_started
# redis:
# condition: service_healthy
2022-09-04 20:29:00 +00:00
threshold:
image: pathogen/threshold:latest
2022-09-21 11:08:29 +00:00
container_name: threshold
build: ./legacy/docker
volumes:
- ${PORTAINER_GIT_DIR}:/code
- ${THRESHOLD_CONFIG_DIR}:/code/legacy/conf/live
#- ${THRESHOLD_TEMPLATE_DIR}:/code/conf/templates
- ${THRESHOLD_CERT_DIR}:/code/legacy/conf/cert
ports:
- "${THRESHOLD_LISTENER_PORT}:${THRESHOLD_LISTENER_PORT}"
- "${THRESHOLD_RELAY_PORT}:${THRESHOLD_RELAY_PORT}"
- "${THRESHOLD_API_PORT}:${THRESHOLD_API_PORT}"
env_file:
- ../stack.env
2022-10-19 15:45:18 +00:00
# for development
extra_hosts:
- "host.docker.internal:host-gateway"
2022-10-21 10:14:51 +00:00
ssdb:
image: tsl0922/ssdb
container_name: ssdb_monolith
2022-09-18 12:04:08 +00:00
volumes:
2022-10-21 10:14:51 +00:00
- ssdb_data:/ssdb/var
ports:
- "1289:1289"
environment:
- SSDB_PORT=1289
networks:
default:
external:
name: pathogen
volumes:
2022-10-21 10:14:51 +00:00
ssdb_data: {}