This commit is contained in:
cangui 2025-08-18 18:09:00 +02:00
parent 58d3597e69
commit 907d21f03a
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ services:
container_name: shelfy-go
working_dir: /app
ports:
- "8090:8080"
- "8090:8083"
- "2121:2121" # si tu gardes FTP
- "30000-30100:30000-30100" # si tu gardes FTP
- "2222:2222" # SFTP

View File

@ -245,8 +245,8 @@ func startHTTP() {
return
}
c.File("./web/index.html") })
log.Println("[HTTP] Serveur Gin sur http://localhost:8080")
app.Run(":8080")
log.Println("[HTTP] Serveur Gin sur http://localhost:8083")
app.Run(":8083")
}
func main() {