mirror of
https://github.com/bitnami/containers.git
synced 2026-02-21 15:27:23 +08:00
This release updates requirements and adds support for different release series in GitHub
12 lines
243 B
YAML
12 lines
243 B
YAML
version: '2'
|
|
|
|
services:
|
|
node:
|
|
tty: true # Enables debugging capabilities when attached to this container.
|
|
image: bitnami/node:4
|
|
# command: sh -c 'npm install && npm start'
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- .:/app
|