Skip to content

Commit

Permalink
Added docker-compose file, easy to install ckan
Browse files Browse the repository at this point in the history
Simplificates the creation of the ckan docker containers required
  • Loading branch information
Raul Hidalgo Caballero committed May 20, 2016
1 parent 148175e commit e94b541
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions contrib/docker/docker-compose.yml
@@ -0,0 +1,20 @@

version: '2'
services:
ckan:
container_name: ckan
image: ckan/ckan:latest
depends_on:
- db
- solr
links:
- db
- solr
ports:
- "80:80"
db:
container_name: db
image: ckan/postgresql:latest
solr:
container_name: solr
image: ckan/solr:latest

0 comments on commit e94b541

Please sign in to comment.