forked from linux/WebHosting
166 lines
3.8 KiB
YAML
166 lines
3.8 KiB
YAML
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
container_name: nginx_proxy
|
|
restart: always
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
- /etc/pki/tls/certs:/etc/nginx/certs:ro
|
|
- /etc/pki/tls/private:/etc/nginx/private:ro
|
|
- /etc/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
|
|
- /etc/nginx/conf.d:/etc/nginx/conf.d:ro
|
|
networks:
|
|
- public
|
|
- backend
|
|
|
|
excalidraw:
|
|
image: excalidraw/excalidraw:latest
|
|
container_name: excalidraw
|
|
restart: always
|
|
networks:
|
|
- backend
|
|
|
|
pif-elog:
|
|
image: container.psi.ch/images/elog:3.1.5
|
|
container_name: pif-elog
|
|
restart: always
|
|
volumes:
|
|
- /opt/logbooks/pif:/usr/local/elog/logbooks
|
|
- /opt/webcontent/pif/elog.cfg:/usr/local/elog/elogd.cfg
|
|
networks:
|
|
- backend
|
|
|
|
lmu-elog:
|
|
image: container.psi.ch/images/elog:3.1.5
|
|
container_name: lmu-elog
|
|
restart: always
|
|
volumes:
|
|
- /opt/logbooks/LMU:/usr/local/elog/logbooks
|
|
- /opt/webcontent/LMU/elog.cfg:/usr/local/elog/elogd.cfg
|
|
networks:
|
|
- backend
|
|
|
|
mcda-calculator:
|
|
image: container.psi.ch/images/mcda-calculator:latest
|
|
container_name: mcda-calculator
|
|
restart: always
|
|
networks:
|
|
- backend
|
|
|
|
dokuwiki-elternnetzwerk:
|
|
image: dokuwiki/dokuwiki:stable
|
|
container_name: dokuwiki-elternnetzwerk
|
|
restart: always
|
|
volumes:
|
|
- /opt/webcontent/tcpwiki/beta-elternnetzwerk:/storage
|
|
environment:
|
|
PHP_TIMEZONE: Europe/Zurich
|
|
networks:
|
|
- backend
|
|
|
|
dokuwiki-cosyma:
|
|
image: dokuwiki/dokuwiki:stable
|
|
container_name: dokuwiki-cosyma
|
|
restart: always
|
|
volumes:
|
|
- /opt/webcontent/tcpwiki/betrieb-cosyma:/storage
|
|
environment:
|
|
PHP_TIMEZONE: Europe/Zurich
|
|
networks:
|
|
- backend
|
|
|
|
dokuwiki-feldmessung:
|
|
image: dokuwiki/dokuwiki:stable
|
|
container_name: dokuwiki-feldmessung
|
|
restart: always
|
|
volumes:
|
|
- /opt/webcontent/tcpwiki/feldmessung-biogas:/storage
|
|
environment:
|
|
PHP_TIMEZONE: Europe/Zurich
|
|
networks:
|
|
- backend
|
|
|
|
dokuwiki-gaw:
|
|
image: dokuwiki/dokuwiki:stable
|
|
container_name: dokuwiki-gaw
|
|
restart: always
|
|
volumes:
|
|
- /opt/webcontent/tcpwiki/gaw:/storage
|
|
environment:
|
|
PHP_TIMEZONE: Europe/Zurich
|
|
networks:
|
|
- backend
|
|
|
|
dokuwiki-innosuisse:
|
|
image: dokuwiki/dokuwiki:stable
|
|
container_name: dokuwiki-innosuisse
|
|
restart: always
|
|
volumes:
|
|
- /opt/webcontent/tcpwiki/innosuisse:/storage
|
|
environment:
|
|
PHP_TIMEZONE: Europe/Zurich
|
|
networks:
|
|
- backend
|
|
|
|
dokuwiki-spinday:
|
|
image: dokuwiki/dokuwiki:stable
|
|
container_name: dokuwiki-spinday
|
|
restart: always
|
|
volumes:
|
|
- /opt/webcontent/tcpwiki/spin-day-workshops:/storage
|
|
environment:
|
|
PHP_TIMEZONE: Europe/Zurich
|
|
networks:
|
|
- backend
|
|
|
|
dokuwiki-tcp:
|
|
image: dokuwiki/dokuwiki:stable
|
|
container_name: dokuwiki-tcp
|
|
restart: always
|
|
volumes:
|
|
- /opt/webcontent/tcpwiki/tcp:/storage
|
|
environment:
|
|
PHP_TIMEZONE: Europe/Zurich
|
|
networks:
|
|
- backend
|
|
|
|
dokuwiki-vfa:
|
|
image: dokuwiki/dokuwiki:stable
|
|
container_name: dokuwiki-vfa
|
|
restart: always
|
|
volumes:
|
|
- /opt/webcontent/tcpwiki/vfa:/storage
|
|
environment:
|
|
PHP_TIMEZONE: Europe/Zurich
|
|
networks:
|
|
- backend
|
|
|
|
dokuwiki-teamarbeit:
|
|
image: dokuwiki/dokuwiki:stable
|
|
container_name: dokuwiki-teamarbeit
|
|
restart: always
|
|
volumes:
|
|
- /opt/webcontent/tcpwiki/wie-teamarbeit-funktioniert:/storage
|
|
environment:
|
|
PHP_TIMEZONE: Europe/Zurich
|
|
networks:
|
|
- backend
|
|
|
|
dokuwiki-xtl:
|
|
image: dokuwiki/dokuwiki:stable
|
|
container_name: dokuwiki-xtl
|
|
restart: always
|
|
volumes:
|
|
- /opt/webcontent/tcpwiki/xtl-studie:/storage
|
|
environment:
|
|
PHP_TIMEZONE: Europe/Zurich
|
|
networks:
|
|
- backend
|
|
|
|
networks:
|
|
public:
|
|
backend:
|
|
|