18 lines
363 B
YAML
18 lines
363 B
YAML
version: '2'
|
|
|
|
services:
|
|
mongodb:
|
|
image: bitnami/mongodb:latest
|
|
|
|
myapp:
|
|
tty: true # Enables debugging capabilities when attached to this container.
|
|
image: bitnami/express:latest
|
|
environment:
|
|
- DATABASE_URL=mongodb://mongodb:27017/my_app_development
|
|
depends_on:
|
|
- mongodb
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- .:/app
|