mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
12 lines
225 B
Plaintext
12 lines
225 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
description="Pockethost server"
|
|
extra_commands=""
|
|
extra_started_commands=""
|
|
|
|
|
|
start_pre() {
|
|
einfo "Starting pockethost"
|
|
/usr/local/bin/pocketbase serve --http '127.0.0.1:8090' --dir /data/pockethost
|
|
}
|