* chore: add files and config to run on VPS and test locally * chore: add missing nginx files left behind * chore: rename workflow files
11 lines
215 B
Bash
Executable File
11 lines
215 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
docker run -d \
|
|
--name ngrok-tasknote-proxy \
|
|
-p 127.0.0.1:8181:8181 \
|
|
-v ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro \
|
|
--restart unless-stopped \
|
|
--network tasknote-network \
|
|
nginx:stable
|