25 lines
490 B
YAML
25 lines
490 B
YAML
version: "2"
|
|
services:
|
|
|
|
rookeries:
|
|
build: .
|
|
image: dorianpula/rookeries:latest
|
|
environment:
|
|
- ROOKERIES_COUCHDB=http://admin:password@db:5984/rookeries
|
|
- ROOKERIES_JWT_SECRET_KEY=problematic_penguins
|
|
depends_on:
|
|
- db
|
|
|
|
testing:
|
|
image: selenium/standalone-firefox-debug
|
|
ports:
|
|
- "5900:5900"
|
|
|
|
db:
|
|
ports:
|
|
- "5984:5984"
|
|
image: apache/couchdb:latest
|
|
environment:
|
|
- COUCHDB_USER=admin
|
|
- COUCHDB_PASSWORD=password
|