This repository has been archived on 2024-11-01. You can view files and clone it, but cannot push or open issues or pull requests.
services/roles/healthcheck/files/docker-compose.yml

25 lines
386 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:
2023-12-09 19:12:42 +00:00
- service.env
2022-11-24 14:22:31 +00:00
volumes:
2022-11-28 18:27:37 +00:00
- ./data/:/opt
network_mode: host
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"