12 lines
157 B
Bash
Executable File
12 lines
157 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
docker run \
|
|
--name zigbee2mqtt \
|
|
--rm \
|
|
-p 8080:8080 \
|
|
-v $(pwd)/data:/app/data \
|
|
-e TZ=Europe/Berlin \
|
|
koenkk/zigbee2mqtt
|
|
|