Something went wrong on our end
-
Bastien Abadie authoredBastien Abadie authored
docker-compose.yml 515 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
# Nginx server as a gateway to iipsrv FCGI
nginx:
build: nginx
ports:
# Conatiner's 80 is available on host 9000
- "9000:80"
depends_on:
- iipsrv
# iipsrv cache
memcached:
image: memcached:alpine