adding docker-compose file to repo

3.1
Julien Fastré 2016-09-26 10:22:43 +02:00
parent 97794bcd57
commit e879c4ba03
2 changed files with 33 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
docker-compose*

33
docker-compose.yml Normal file
View File

@ -0,0 +1,33 @@
version: '2'
services:
sogo:
build:
context: .
args:
- version=2.3.15
links:
- db
environment:
- "WorkersCount=10"
volumes:
- /usr/local/lib/GNUstep/SOGo/WebServerResources/
- /home/julienfastre/Documents/informatique/sogo-compil/sogo.conf:/etc/sogo/sogo.conf
db:
image: postgres:9.5
ports:
- "5432"
memcached:
image: memcached:1.4-alpine
nginx:
image: nginx
links:
- sogo
volumes_from:
- sogo:ro
ports:
- "8080:80"
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro