mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-11 07:06:16 +01:00
20 lines
369 B
Bash
Executable File
20 lines
369 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TOPDIR=$(dirname $(readlink -f $0))
|
|
|
|
podman run \
|
|
--name obs-server \
|
|
--hostname obs-server \
|
|
--replace \
|
|
--detach \
|
|
--interactive \
|
|
--tty \
|
|
--volume="$TOPDIR":/opt/obs \
|
|
--cap-add SYS_PTRACE \
|
|
-p 1443:443 \
|
|
-p 1082:82 \
|
|
obs-server
|
|
|
|
sleep 0.5
|
|
podman exec -it obs-server /usr/bin/systemctl is-system-running --wait
|