This commit is contained in:
2025-08-14 19:30:32 -07:00
parent 689d5d4f37
commit e35c31215b
6 changed files with 19 additions and 20 deletions

5
docker-deploy.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o noteserver .
docker build -t noteserver .
docker rm noteserver
docker run -d -p 80:3000 noteserver --name noteserver