This commit is contained in:
cangui 2025-07-27 16:33:19 +02:00
parent 70ffc29ffd
commit 3032a06952
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ services:
- ./upload:/app/upload # Dossier upload persistant, PAS rebuild - ./upload:/app/upload # Dossier upload persistant, PAS rebuild
- go-modules:/go/pkg/mod # Cache des modules Go - go-modules:/go/pkg/mod # Cache des modules Go
ports: ports:
- "8080:8080" # HTTP - "8090:8080" # HTTP
- "2121:2121" # FTP - "2121:2121" # FTP
command: > command: >
sh -c "go mod tidy && sh -c "go mod tidy &&

View File

@ -114,5 +114,5 @@ func main() {
}) })
log.Println("[HTTP] Serveur Gin sur http://localhost:8080") log.Println("[HTTP] Serveur Gin sur http://localhost:8080")
app.Run(":8081") app.Run(":8080")
} }