Skip to content

Commit

Permalink
Compose Up
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul Hidalgo Caballero committed Dec 4, 2016
1 parent 43f90c3 commit 2a949a4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions contrib/docker/docker-compose.yml
Expand Up @@ -3,6 +3,8 @@ services:
ckan:
container_name: ckan
image: ckan/ckan:latest
build:
context: ./../../
depends_on:
- db
- solr
Expand All @@ -13,12 +15,19 @@ services:
- redis
ports:
- "80:5000"

db:
container_name: db
image: ckan/postgresql:latest
build:
context: ./postgresql/

solr:
container_name: solr
image: ckan/solr:latest
build:
context: ./solr/

redis:
container_name: redis
image: redis:latest

0 comments on commit 2a949a4

Please sign in to comment.