Skip to content

Commit

Permalink
add docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
arikfr committed Oct 21, 2015
1 parent 9e17747 commit 5e8e141
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions setup/ubuntu_docker/files/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
redash:
image: everythingme/redash
ports:
- "5000:5000"
links:
- redis
- postgres
env_file: env
redis:
image: redis:2.8
postgres:
image: postgres:9.3
volumes:
- /opt/postgres-data:/var/lib/postgresql/data
nginx:
image: nginx
ports:
- "80:80"
volumes:
- "./setup/docker/nginx/nginx.conf:/etc/nginx/nginx.conf"
links:
- redash

0 comments on commit 5e8e141

Please sign in to comment.