Collaboration
Cryptpad
Link: https://hub.docker.com/r/promasu/cryptpad
Etherpad
Links:
- https://hub.docker.com/r/etherpad/etherpad
- https://github.com/ether/etherpad-lite/blob/develop/doc/docker.md
version: '3'
networks:
etherpad:
services:
db:
restart: always
image: "postgres:10"
environment:
- POSTGRES_DB=etherpad
- POSTGRES_USER=etherpad
- POSTGRES_PASSWORD=secr4Ether
networks:
- etherpad
app:
image: "etherpad/etherpad"
ports:
- 9001:9001
environment:
- DB_TYPE=postgres
- DB_HOST=db
- DB_PORT=5432
- DB_NAME=etherpad
- DB_USER=etherpad
- DB_PASS=secr4Ether
networks:
- etherpad
open project
https://www.openproject.org/de/docs/installation-and-operations/installation/docker/
docker run -d -p 8087:80 --name openproject \
-e SERVER_HOSTNAME=openproject.vps3.draab.at \
-e SECRET_KEY_BASE=veryS3cretK4 \
-v op_pgdata:/var/openproject/pgdata \
-v op_assets:/var/openproject/assets \
openproject/community:12
- settings:
- Administration -> General
4minitz - meeting documentation
- Quick deployment: https://github.com/4minitz/4minitz/blob/develop/README.md#deployment-quick-start
version: '3.1'
# This is an example Docker compose configuration file
# that can be used to deploy 4Minitz via Docker.
#
# If you are deploying a fresh install of 4Minitz feel
# free to use this. If you want to upgrade an existing
# 4Minitz installation please see our migration guide.
# Otherwise you may run into issues with the MongoDB.
volumes:
4minitz_mongodb:
4minitz_storage:
services:
mongo:
image: mongo:3.4
restart: always
networks:
- 4minitz
volumes:
- 4minitz_mongodb:/data/db
4minitz:
image: 4minitz/4minitz:stable
restart: always
ports:
- 3100:3333
environment:
- MONGO_URL=mongodb://mongo/4minitz
- ROOT_URL=http://localhost:3100
volumes:
- 4minitz_storage:/4minitz_storage
networks:
- 4minitz
depends_on:
- mongo
networks:
4minitz:
- https://github.com/4minitz/4minitz/blob/develop/doc/admin/adminguide.md#configuration-for-sending-emails