23 lines
551 B
YAML
23 lines
551 B
YAML
version: '2'
|
|
services:
|
|
openresty:
|
|
image: docker.fet.at/openrestyfetfull:latest
|
|
container_name: nginx
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
volumes:
|
|
# bei der Produktivvariante macht es Sinn hier einen Ordner zu mappen
|
|
# zB: ./conf.d/:/etc/nginx/conf.d/
|
|
# - nginxconf:/etc/nginx/conf.d/
|
|
# theiaconf:
|
|
# image: docker.triton2.fet.at/dev_theia
|
|
# volumes:
|
|
# - nginxconf:/home/project
|
|
# - /var/run/docker.sock:/var/run/docker.sock
|
|
#volumes:
|
|
# nginxconf:
|
|
# driver: local
|
|
networks:
|
|
default:
|
|
name: nginx |