start.sh 232 B

123456
  1. #!/bin/bash
  2. docker run -d --restart always \
  3. --mount type=bind,source=$PWD/app,target=/tmp/app \
  4. --mount type=bind,source=$HOME/media,target=/tmp/app/resources/public/media,readonly \
  5. --name website-v2-dev -p 23000:3000 website-v2