24
1
Fork 0
drop.chapril.org-firefoxsend/docker-compose.yml

27 lines
409 B
YAML
Raw Normal View History

2017-06-09 01:11:17 +02:00
version: "3"
services:
web:
build: .
links:
- redis
ports:
- "1443:1443"
environment:
- REDIS_HOST=redis
2017-06-09 01:11:17 +02:00
redis:
image: redis:alpine
ports:
- "6379:6379"
selenium:
image: b4handjr/selenium-firefox
ports:
- "5900"
- "4444:4444"
shm_size: 2g
integration-tests:
build: ./test/integration
links:
- web
- selenium