2022-09-18 12:04:08 +00:00
|
|
|
version: "2.2"
|
|
|
|
|
2022-09-02 21:30:45 +00:00
|
|
|
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
|
2022-09-02 21:30:45 +00:00
|
|
|
volumes:
|
|
|
|
- ${PORTAINER_GIT_DIR}:/code
|
|
|
|
env_file:
|
2022-09-05 06:20:30 +00:00
|
|
|
- ../stack.env
|
2022-09-04 20:29:00 +00:00
|
|
|
|
2022-09-07 06:20:30 +00:00
|
|
|
threshold:
|
|
|
|
image: pathogen/threshold:latest
|
2022-09-21 11:08:29 +00:00
|
|
|
container_name: threshold
|
2022-09-07 06:20:30 +00:00
|
|
|
build: ./legacy/docker
|
|
|
|
volumes:
|
|
|
|
- ${PORTAINER_GIT_DIR}:/code
|
|
|
|
- ${THRESHOLD_CONFIG_DIR}:/code/legacy/conf/live
|
2022-10-21 06:20:30 +00:00
|
|
|
#- ${THRESHOLD_TEMPLATE_DIR}:/code/conf/templates
|
2022-09-07 06:20:30 +00:00
|
|
|
- ${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-09-07 06:20:30 +00:00
|
|
|
|
2022-10-21 10:14:51 +00:00
|
|
|
ssdb:
|
|
|
|
image: tsl0922/ssdb
|
|
|
|
container_name: ssdb_monolith
|
|
|
|
ports:
|
|
|
|
- "1289:1289"
|
|
|
|
environment:
|
|
|
|
- SSDB_PORT=1289
|
2022-09-02 21:30:45 +00:00
|
|
|
|
|
|
|
networks:
|
|
|
|
default:
|
|
|
|
external:
|
2022-10-04 19:17:04 +00:00
|
|
|
name: pathogen
|
|
|
|
|