mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
7 lines
196 B
Bash
7 lines
196 B
Bash
|
#!/usr/bin/env bash
|
||
|
if ! command -v apk &>/dev/null; then
|
||
|
apt update && apt install -y -qq docker.io ldnsutils grep scrcpy ffmpeg
|
||
|
else
|
||
|
apk update && apk add docker drill grep scrcpy ffmpeg
|
||
|
fi
|