16 lines
263 B
YAML
16 lines
263 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
|
|
sample:
|
|
container_name: gonito
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
# volumes:
|
|
# - '.:/app'
|
|
# - '/app/node_modules'
|
|
ports:
|
|
- 3001:3000
|
|
environment:
|
|
- CHOKIDAR_USEPOLLING=true |