demos.dockercompose.35services/docker-compose.yaml
2021-09-21 16:50:54 +02:00

21 lines
652 B
YAML

version: "3.8"
services:
bffh:
image: registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest
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.
- "./config/bffh:/etc/bffh:z"
links:
- mqtt
mqtt:
image: eclipse-mosquitto:1.6.13
restart: always
ports:
- "1883:1883"
volumes:
- "./config/mosquitto/mosquitto.config:/mosquitto/config/:z"