infrastructure/roles/healthcheck/files/docker-compose.yml

25 lines
416 B
YAML
Raw Normal View History

2024-09-26 22:02:36 +00:00
version: "3.7"
x-common-elements:
&common-elements
build:
context: .
image: registry.serguzim.me/services/healthcheck
restart: never
env_file:
- service.env
volumes:
- ./data/:/opt
network_mode: host
services:
http:
<<: *common-elements
command: "/opt/http"
matrix:
<<: *common-elements
command: "/opt/matrix"
mail:
<<: *common-elements
command: "/opt/mail"