mirror of
https://git.freecumextremist.com/icscarythings/treebird-docker.git
synced 2024-11-04 21:34:11 +00:00
11 lines
256 B
Bash
Executable file
11 lines
256 B
Bash
Executable file
#!/bin/sh
|
|
# runs the treebird image as a docker daemon
|
|
instance=${1:-https://sleepy.cafe/}
|
|
release=${2:-latest}
|
|
|
|
docker run \
|
|
--rm \
|
|
--name treebird \
|
|
-p 4008:4008 \
|
|
-e TREEBIRD_CFG_INSTANCE_URL="${instance}" \
|
|
-d "treebird:${release}"
|