services/healthcheck/docker-compose.yml

30 lines
439 B
YAML
Raw Normal View History

2022-11-24 14:22:31 +00:00
version: "3.7"
x-common-elements:
&common-elements
build:
context: .
image: healthcheck
restart: never
env_file:
- .env
- .secret.env
volumes:
2022-11-28 18:27:37 +00:00
- ./data/:/opt
2022-11-24 14:22:31 +00:00
services:
http:
<<: *common-elements
command: "/opt/http"
matrix:
<<: *common-elements
command: "/opt/matrix"
mail:
<<: *common-elements
command: "/opt/mail"
networks:
default:
name: healthcheck
external: true