mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-18 04:58:52 +02:00
add teleprompter
This commit is contained in:
parent
3068b2620a
commit
08e45dc37c
@ -201,6 +201,7 @@ A collection of delicious docker recipes.
|
|||||||
- [x] phpvirtualbox-arm
|
- [x] phpvirtualbox-arm
|
||||||
- [x] revive
|
- [x] revive
|
||||||
- [x] tabula
|
- [x] tabula
|
||||||
|
- [x] teleprompter
|
||||||
- [x] tiddlywiki
|
- [x] tiddlywiki
|
||||||
- [x] zoneminder :+1:
|
- [x] zoneminder :+1:
|
||||||
|
|
||||||
|
19
teleprompter/Dockerfile
Normal file
19
teleprompter/Dockerfile
Normal 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
2
teleprompter/README.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
teleprompter
|
||||||
|
============
|
9
teleprompter/docker-compose.yml
Normal file
9
teleprompter/docker-compose.yml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
version: "3.8"
|
||||||
|
services:
|
||||||
|
teleprompter:
|
||||||
|
image: easypi/teleprompter-arm64
|
||||||
|
init: true
|
||||||
|
ports:
|
||||||
|
- "3000:3000"
|
||||||
|
- "8080:8080"
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in New Issue
Block a user