Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker build? #27

Open
dmarkey opened this issue May 21, 2019 · 1 comment
Open

Docker build? #27

dmarkey opened this issue May 21, 2019 · 1 comment

Comments

@dmarkey
Copy link

dmarkey commented May 21, 2019

Any chance of a docker build to use. It would be great

@Digitalum
Copy link

I am not an expert in Docker containers but I was able to create a working version based on Ubuntu with a cronjob that runs every minute. You will need 3 files:

pdf-bot.config_docker.js
module.exports = {
"api": {
"token": "my-test-token"
},
"storagePath": "/app/pdf-storage",
generator: {
port : 9222
}
}

cronjob_shiftall
* * * * * node $(npm bin -g)/pdf-bot -c ../app/pdf-bot.config_docker.js shift:all >> /var/log/pdfbot.log 2>&1

Dockerfile

FROM ubuntu:18.04
WORKDIR /app
COPY pdf-bot/ /app/
COPY pdf-bot.config_docker.js /app

RUN mkdir /app/pdf-storage
RUN mkdir /app/pdf-storage/db
RUN mkdir /app/pdf-storage/pdf

RUN apt-get update
RUN apt-get install --yes curl
RUN curl --silent --location https://deb.nodesource.com/setup_4.x
RUN apt-get install --yes nodejs
RUN apt-get install --yes build-essential
RUN apt-get install --yes npm
RUN apt-get install --assume-yes chromium-browser
RUN npm install -g pm2

RUN apt-get -y install cron
COPY cronjob_shiftall /etc/cron.d/cronjob_shiftall
RUN chmod 0644 /etc/cron.d/cronjob_shiftall
RUN crontab /etc/cron.d/cronjob_shiftall

RUN npm install -g pdf-bot

CMD ls && cron && pm2 start chromium-browser --interpreter none -- --headless --disable-gpu --disable-translate --disable-extensions --disable-background-networking --safebrowsing-disable-auto-update --disable-sync --metrics-recording-only --disable-default-apps --no-first-run --mute-audio --hide-scrollbars --disable-features=NetworkService --no-sandbox --remote-debugging-port=9222 && pdf-bot -c ./pdf-bot.config_docker.js api

EXPOSE 3000

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants