Files
kompose/script/test/fixtures/service-group/compose.yaml
T
2021-10-03 23:07:41 +08:00

28 lines
537 B
YAML

version: "3.5"
services:
librenms:
image: librenms/librenms:latest
container_name: librenms
hostname: librenms
ports:
- target: 8000
published: 8000
protocol: tcp
volumes:
- "./librenms:/data"
environment:
- "TZ=${TZ}"
restart: always
dispatcher:
image: librenms/dispatcher:latest
container_name: dispatcher
hostname: dispatcher
depends_on:
- librenms
volumes:
- "./librenms:/data"
environment:
- "TZ=${TZ}"
restart: always