mirror of
https://github.com/bitnami/containers.git
synced 2026-02-14 16:47:21 +08:00
26 lines
538 B
YAML
26 lines
538 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
|
|
command: npm run development
|
|
environment:
|
|
- PORT=3000
|
|
- NODE_ENV=development
|
|
- DATABASE_URL=mongodb://mongodb:27017/myapp
|
|
|
|
- SKIP_DB_WAIT=0
|
|
- SKIP_DB_MIGRATION=0
|
|
- SKIP_NPM_INSTALL=0
|
|
- SKIP_BOWER_INSTALL=0
|
|
depends_on:
|
|
- mongodb
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- .:/app
|