Files
containers/bitnami/express/docker-compose.yml
Miguel Martinez b0bc60fb2c Typos
2016-06-15 15:10:23 -07:00

18 lines
386 B
YAML

version: '2'
services:
mongodb:
image: bitnami/mongodb:3.2.6-r0
myapp:
tty: true # Enables debugging capabilities when attached to this container.
image: gcr.io/bitnami-containers/express:4.13.4-r1
environment:
- DATABASE_URL=mongodb://mongodb:27017/my_app_development
depends_on:
- mongodb
ports:
- 3000:3000
volumes:
- .:/app