diff --git a/iobroker/docker-compose.yml b/iobroker/docker-compose.yml new file mode 100644 index 0000000..4923faf --- /dev/null +++ b/iobroker/docker-compose.yml @@ -0,0 +1,24 @@ +services: + iobroker: + image: buanet/iobroker:latest + container_name: iobroker + ports: + - "8081:8081" + volumes: + - opt:/opt/iobroker + restart: always + #detach: true + networks: + - iobroker_net + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8081"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 30s + +networks: + iobroker_net: + driver: bridge +volumes: + opt: \ No newline at end of file