50 lines
1.1 KiB
YAML
50 lines
1.1 KiB
YAML
version: '2'
|
|
services:
|
|
solr:
|
|
image: docker.triton2.fet.at/solrfet
|
|
volumes:
|
|
- data:/var/solr
|
|
command:
|
|
- solr-precreate
|
|
- core
|
|
- /opt/solr/server/solr/configsets/fetconfig
|
|
etherpadsql:
|
|
image: mariadb
|
|
environment:
|
|
MYSQL_DATABASE: etherpaddb
|
|
MYSQL_USER: user
|
|
MYSQL_PASSWORD: hgu
|
|
MYSQL_COLLATION: utf8_general_ci
|
|
MYSQL_CHARSET: utf8
|
|
volumes:
|
|
- ep-mysql-volume:/var/lib/mysql
|
|
etherpad:
|
|
image: etherpad/etherpad
|
|
environment:
|
|
DB_TYPE: mysql
|
|
DB_HOST: etherpadsql
|
|
DB_PORT: 3306
|
|
DB_NAME: etherpaddb
|
|
DB_USER: user
|
|
DB_PASS: hgu
|
|
DB_CHARSET: utf8
|
|
TRUST_PROXY: "true"
|
|
REQUIRE_SESSION: "true"
|
|
depends_on:
|
|
- etherpadsql
|
|
volumes:
|
|
- /srv/etherpad/APIKEY.txt:/opt/etherpad-lite/APIKEY.txt
|
|
nginx:
|
|
image: nginx:alpine
|
|
volumes:
|
|
- ./services/nginx/default.conf:/etc/nginx/conf.d/default.conf
|
|
ports:
|
|
- "5000:80"
|
|
theia:
|
|
image: docker.triton2.fet.at/andisdev
|
|
volumes:
|
|
data:
|
|
driver: local
|
|
ep-mysql-volume:
|
|
driver: local
|