1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-02 03:37:40 +02:00

add teleprompter

This commit is contained in:
kev 2021-10-19 15:19:42 +08:00
parent 3068b2620a
commit 08e45dc37c
4 changed files with 31 additions and 0 deletions

View File

@ -201,6 +201,7 @@ A collection of delicious docker recipes.
- [x] phpvirtualbox-arm
- [x] revive
- [x] tabula
- [x] teleprompter
- [x] tiddlywiki
- [x] zoneminder :+1:

19
teleprompter/Dockerfile Normal file
View File

@ -0,0 +1,19 @@
#
# Dockerfile for teleprompter
#
FROM node:12-alpine
MAINTAINER EasyPi Software Foundation
WORKDIR /opt/app
RUN set -xe \
&& apk add --no-cache curl tar \
&& npm install npm-run-all \
&& ln -s node_modules/npm-run-all/bin/npm-run-all/index.js npm-run-all \
&& curl -sSL https://github.com/manifestinteractive/teleprompter/archive/refs/heads/master.tar.gz | tar xz --strip 1 \
&& npm install
EXPOSE 3000 8080
CMD ["./npm-run-all", "--parallel", "server", "client"]

2
teleprompter/README.md Normal file
View File

@ -0,0 +1,2 @@
teleprompter
============

View File

@ -0,0 +1,9 @@
version: "3.8"
services:
teleprompter:
image: easypi/teleprompter-arm64
init: true
ports:
- "3000:3000"
- "8080:8080"
restart: unless-stopped