mirror of
https://github.com/bitnami/containers.git
synced 2026-02-10 20:47:22 +08:00
12 lines
254 B
YAML
12 lines
254 B
YAML
version: '2'
|
|
|
|
services:
|
|
node:
|
|
tty: true # Enables debugging capabilities when attached to this container.
|
|
image: docker.io/bitnami/node:18
|
|
# command: sh -c 'npm install && npm start'
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
- .:/app
|