1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00

add obs-web-arm

This commit is contained in:
kev 2021-10-25 16:42:41 +08:00
parent 53dc8dae1d
commit 516048e2f2
4 changed files with 35 additions and 1 deletions

View File

@ -163,6 +163,7 @@ A collection of delicious docker recipes.
- [x] mpd :musical_note:
- [x] murmur
- [x] node-media-server-arm :camera: :cn:
- [x] obs-web-arm :joystick:
- [x] openmeetings :camera:
- [x] paddle-ocr
- [x] plex :moneybag:
@ -409,7 +410,7 @@ A collection of delicious docker recipes.
- [x] chrome
- [x] firefox
- [x] vnc
- selenoid-ui
- [x] selenoid-ui
- [x] sentry
- [x] atmoz/sftp
- [x] snipe/snipe-it

15
obs-web-arm/Dockerfile Normal file
View File

@ -0,0 +1,15 @@
#
# Dockerfile for obs-web-arm
#
FROM alpine:3 AS build
WORKDIR /app
RUN set -xe \
&& apk add --no-cache curl node npm tar \
&& curl -sSL https://github.com/Niek/obs-web/archive/refs/heads/master.tar.gz | tar xz --strip 1 \
&& npm install \
&& npm run build
FROM nginx:alpine
MAINTAINER EasyPi Software Foundation
COPY --from build /app/public/* /usr/share/nginx/html

11
obs-web-arm/README.md Normal file
View File

@ -0,0 +1,11 @@
obs-web
=======
[obs-web][1] is the easiest way to control OBS remotely.
```bash
$ docker-compose up -d
$ curl http://127.0.0.1:5000
```
[1]: https://github.com/Niek/obs-web

View File

@ -0,0 +1,7 @@
version: "3.8"
services:
obs-web:
image: easypi/obs-web-arm
ports:
- "5000:80"
restart: unless-stopped