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

version: '3'
services:
nuxt:
image: node:lts
user: $UID:$GID
ports:
- '3000:3000'
volumes:
- '.:/srv'
working_dir: /srv
command: "npm run dev"
# command: bash -c "npm run build; npm run start"
# command: bash -c "npm install; npm audit fix; npm run build; npm run start"