33 lines
672 B
YAML
33 lines
672 B
YAML
version: '2'
|
|
services:
|
|
openresty:
|
|
image: docker.triton2.fet.at/openrestyfet:latest
|
|
ports:
|
|
- "8080:80"
|
|
- "4443:443"
|
|
volumes:
|
|
- nginxconf:/etc/nginx/conf.d/
|
|
openresty2:
|
|
image: docker.triton2.fet.at/openrestyfet:latest
|
|
ports:
|
|
- "8081:8080"
|
|
|
|
theiaconf:
|
|
image: docker.triton2.fet.at/dev_theia
|
|
volumes:
|
|
- nginxconf:/home/project
|
|
devnginx:
|
|
image: docker.triton2.fet.at/dev_nginx
|
|
ports:
|
|
- "8082:80"
|
|
theia:
|
|
image: docker.triton2.fet.at/dev_theia
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- data_dev:/home
|
|
|
|
volumes:
|
|
data_dev:
|
|
driver: local
|
|
nginxconf:
|
|
driver: local |