demos.dockercompose.35services/docker-compose.yaml

25 lines
754 B
YAML
Raw Normal View History

2021-09-20 21:54:53 +02:00
version: "3.8"
services:
bffh:
2021-12-02 12:23:20 +00:00
image: registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest
2021-09-20 21:54:53 +02:00
pull_policy: always
restart: always
ports:
- "59661:59661"
volumes:
# generate a sample config.toml by running "docker run registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest --print-default > examples/config.toml" from the project root. You may have to delete the ipv6 listen section.
2021-09-21 21:00:18 +02:00
- "./config/bffh:/etc/bffh"
2021-09-21 18:59:08 +02:00
- "./adapters:/usr/local/lib/bffh/adapters"
2021-11-24 21:27:41 +00:00
- data:/var/lib/bffh
2021-09-20 21:54:53 +02:00
links:
- mqtt
mqtt:
image: eclipse-mosquitto:1.6.13
2021-09-21 16:26:51 +02:00
restart: always
ports:
- "1883:1883"
volumes:
2021-09-21 16:55:06 +02:00
- "./config/mosquitto/mosquitto.conf:/mosquitto/config/mosquitto.conf"
2021-11-24 21:27:41 +00:00
volumes:
data: