mirror of
https://github.com/bitnami/containers.git
synced 2026-03-09 15:40:15 +08:00
18 lines
386 B
YAML
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
|