Files
parcer/docker-entrypoint.sh

8 lines
124 B
Bash
Raw Normal View History

2024-10-30 02:06:24 +05:30
#!/bin/sh
# Start backend server
2024-10-31 15:25:49 +05:30
cd /app && npm run start:server -- --host 0.0.0.0 &
2024-10-30 02:06:24 +05:30
# Start nginx
2024-10-31 15:25:49 +05:30
nginx -g 'daemon off;'