Something went wrong on our end
-
Bastien Abadie authoredBastien Abadie authored
docker-compose.yml 641 B
---
version: "3.2"
services:
# Our own build of IIPsrv
#iipsrv:
# build: iipsrv
# depends_on:
# - memcached
# volumes:
# - type: volume
# source: ./logs
# target: /var/log
# - type: bind
# source: ./images
# target: /images
# iipsrv cache
#memcached:
# image: memcached:alpine
loris:
build: loris
volumes:
- type: bind
source: ./images
target: /loris/images
# Nginx server as a gateway to iipsrv FCGI
nginx:
build: nginx
ports:
# Conatiner's 80 is available on host 9000
- "9000:80"
depends_on:
- loris