File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 6767 docker rm collabydraw-frontend || true
6868 docker run -d \
6969 --name collabydraw-frontend \
70+ --restart always \
7071 -p 3000:3000 \
7172 -e DATABASE_URL=${{ secrets.DATABASE_URL }} \
7273 -e JWT_SECRET=${{ secrets.JWT_SECRET }} \
Original file line number Diff line number Diff line change 5050 docker rm collabydraw-websocket || true
5151 docker run -d \
5252 --name collabydraw-websocket \
53+ --restart always \
5354 -p 8080:8080 \
5455 -e DATABASE_URL=${{ secrets.DATABASE_URL }} \
5556 coderomm/collabydraw-websocket:${{ github.sha }}
Original file line number Diff line number Diff line change @@ -61,5 +61,5 @@ RUN DATABASE_URL=${DATABASE_URL} JWT_SECRET=${JWT_SECRET} pnpm run build
6161# Expose the port
6262EXPOSE 3000
6363
64- # Start the web application
65- CMD ["pnpm", "run", "start:web "]
64+ # Start the collabydraw application
65+ CMD ["pnpm", "run", "start:collabydraw "]
You can’t perform that action at this time.
0 commit comments