--- version: "3" services: app: image: node:alpine volumes: - ./src:/usr/src/app/ ports: - "3001:3000" user: "1000:1000" working_dir: "/usr/src/app" command: 'sh -c "cd $APP_FOLDER && npm run $MODE"'