You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
363 B

  1. version: '3'
  2. services:
  3. nuxt:
  4. image: node:lts
  5. user: $UID:$GID
  6. ports:
  7. - '3000:3000'
  8. volumes:
  9. - '.:/srv'
  10. working_dir: /srv
  11. command: "npm run dev"
  12. # command: bash -c "npm run build; npm run start"
  13. # command: bash -c "npm install; npm audit fix; npm run build; npm run start"