bin
config
dockers
apikaz
cachet
castopod
cloud
collabora
dokuwiki
ethercalc
.env
Dockerfile
docker-compose.yml
etherpad
framadate
gitea
grafana
imapsync
jirafeau
ldap
mastodon
mattermost
mobilizon
paheko
peertube
portainer
portainer_agent
postfix
postfix2
quotas
redis
roundcube
snappymail
sympa
traefik
translucid
vaultwarden
web
secret.tmpl
.dummy
.gitignore
LICENSE
README.md
10 lines
349 B
Docker
10 lines
349 B
Docker
FROM node:4.8
|
|
|
|
RUN useradd ethercalc --create-home
|
|
RUN npm install -g ethercalc pm2 || true
|
|
RUN rm -rf /usr/local/lib/node_modules/ethercalc/node_modules/nodemailer/ || true
|
|
|
|
USER ethercalc
|
|
EXPOSE 8000
|
|
CMD ["sh", "-c", "REDIS_HOST=$REDIS_PORT_6379_TCP_ADDR REDIS_PORT=$REDIS_PORT_6379_TCP_PORT pm2 start -x `which ethercalc` -- --cors && pm2 logs"]
|