mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-21 22:47:55 +01:00
updated docker example
This commit is contained in:
parent
53564b6bca
commit
7ca1fb5d54
@ -15,8 +15,8 @@ FROM debian:buster-slim
|
|||||||
RUN apt-get update && apt-get upgrade -yqq
|
RUN apt-get update && apt-get upgrade -yqq
|
||||||
RUN apt-get install -yqq libgsasl7 && rm -rf /var/lib/apt/lists/*
|
RUN apt-get install -yqq libgsasl7 && rm -rf /var/lib/apt/lists/*
|
||||||
COPY --from=builder /usr/local/cargo/bin/diflouroborane /usr/local/bin/diflouroborane
|
COPY --from=builder /usr/local/cargo/bin/diflouroborane /usr/local/bin/diflouroborane
|
||||||
COPY --from=builder /usr/src/bffh/examples/bffh.dhall /etc/diflouroborane.dhall
|
#COPY --from=builder /usr/src/bffh/examples/bffh.dhall /etc/diflouroborane.dhall
|
||||||
# RUN diflouroborane --print-default > /etc/diflouroborane.toml
|
# RUN diflouroborane --print-default > /etc/diflouroborane.toml
|
||||||
VOLUME /etc/diflouroborane.dhall
|
VOLUME /etc/bffh/
|
||||||
EXPOSE 59661
|
EXPOSE 59661
|
||||||
ENTRYPOINT ["diflouroborane"]
|
ENTRYPOINT ["sh", "-c", "diflouroborane -c /etc/bffh/bffh.dhall --load=/etc/bffh; diflouroborane -c /etc/bffh/bffh.dhall"]
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
machines = "/etc/bffh/machines.toml"
|
|
||||||
|
|
||||||
[[listens]]
|
|
||||||
address = "127.0.0.1"
|
|
||||||
port = 59661
|
|
||||||
|
|
||||||
[[listens]]
|
|
||||||
address = "::1"
|
|
||||||
port = 59661
|
|
||||||
|
|
||||||
[shelly]
|
|
||||||
mqtt_url = "mqtt:1883"
|
|
@ -6,7 +6,7 @@ services:
|
|||||||
- "59661:59661"
|
- "59661:59661"
|
||||||
volumes:
|
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.
|
# 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.
|
||||||
- "$PWD/examples/docker:/etc/bffh"
|
- "$PWD/../:/etc/bffh"
|
||||||
links:
|
links:
|
||||||
- mqtt
|
- mqtt
|
||||||
mqtt:
|
mqtt:
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
[e5408099-d3e5-440b-a92b-3aabf7683d6b]
|
|
||||||
name = "Somemachine"
|
|
||||||
disclose = "lab.some.disclose"
|
|
||||||
read = "lab.some.read"
|
|
||||||
write = "lab.some.write"
|
|
||||||
manage = "lab.some.admin"
|
|
||||||
|
|
||||||
[eaabebae-34d1-4a3a-912a-967b495d3d6e]
|
|
||||||
name = "Testmachine"
|
|
||||||
description = "An optional description"
|
|
||||||
disclose = "lab.test.read"
|
|
||||||
read = "lab.test.read"
|
|
||||||
write = "lab.test.write"
|
|
||||||
manage = "lab.test.admin"
|
|
@ -1,20 +0,0 @@
|
|||||||
[testrole]
|
|
||||||
name = "Testrole"
|
|
||||||
permissions = [
|
|
||||||
"lab.test.*"
|
|
||||||
]
|
|
||||||
|
|
||||||
[somerole]
|
|
||||||
name = "Somerole"
|
|
||||||
parents = ["testparent%lmdb"]
|
|
||||||
permissions = [
|
|
||||||
"lab.some.admin"
|
|
||||||
]
|
|
||||||
|
|
||||||
[testparent]
|
|
||||||
name = "Testparent"
|
|
||||||
permissions = [
|
|
||||||
"lab.some.write",
|
|
||||||
"lab.some.read",
|
|
||||||
"lab.some.disclose",
|
|
||||||
]
|
|
Loading…
Reference in New Issue
Block a user