mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
add obs-web-arm
This commit is contained in:
@@ -163,6 +163,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] mpd :musical_note:
|
- [x] mpd :musical_note:
|
||||||
- [x] murmur
|
- [x] murmur
|
||||||
- [x] node-media-server-arm :camera: :cn:
|
- [x] node-media-server-arm :camera: :cn:
|
||||||
|
- [x] obs-web-arm :joystick:
|
||||||
- [x] openmeetings :camera:
|
- [x] openmeetings :camera:
|
||||||
- [x] paddle-ocr
|
- [x] paddle-ocr
|
||||||
- [x] plex :moneybag:
|
- [x] plex :moneybag:
|
||||||
@@ -409,7 +410,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] chrome
|
- [x] chrome
|
||||||
- [x] firefox
|
- [x] firefox
|
||||||
- [x] vnc
|
- [x] vnc
|
||||||
- selenoid-ui
|
- [x] selenoid-ui
|
||||||
- [x] sentry
|
- [x] sentry
|
||||||
- [x] atmoz/sftp
|
- [x] atmoz/sftp
|
||||||
- [x] snipe/snipe-it
|
- [x] snipe/snipe-it
|
||||||
|
|||||||
15
obs-web-arm/Dockerfile
Normal file
15
obs-web-arm/Dockerfile
Normal 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
11
obs-web-arm/README.md
Normal 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
|
||||||
7
obs-web-arm/docker-compose.yml
Normal file
7
obs-web-arm/docker-compose.yml
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
obs-web:
|
||||||
|
image: easypi/obs-web-arm
|
||||||
|
ports:
|
||||||
|
- "5000:80"
|
||||||
|
restart: unless-stopped
|
||||||
Reference in New Issue
Block a user