Suresh Alse
8 years ago
3 changed files with 25 additions and 1 deletions
@ -0,0 +1,20 @@
|
||||
# docker run -d -p 8000:8000 alseambusher/crontab-ui |
||||
FROM alpine:3.5 |
||||
|
||||
LABEL maintainer "@alseambusher" |
||||
LABEL description "Crontab-UI docker" |
||||
|
||||
RUN apk --no-cache add \ |
||||
nodejs \ |
||||
wget \ |
||||
curl |
||||
|
||||
RUN npm install -g crontab-ui |
||||
|
||||
ENV HOST 0.0.0.0 |
||||
|
||||
ENV PORT 8000 |
||||
|
||||
EXPOSE $PORT |
||||
|
||||
CMD ["crontab-ui"] |
Loading…
Reference in new issue