diff --git a/docker-compose.yml b/docker-compose.yml index 6859e85..3149d97 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: - ./upload:/app/upload # Dossier upload persistant, PAS rebuild - go-modules:/go/pkg/mod # Cache des modules Go ports: - - "8080:8080" # HTTP + - "8090:8080" # HTTP - "2121:2121" # FTP command: > sh -c "go mod tidy && diff --git a/main.go b/main.go index 73be9f6..2a7792d 100644 --- a/main.go +++ b/main.go @@ -114,5 +114,5 @@ func main() { }) log.Println("[HTTP] Serveur Gin sur http://localhost:8080") - app.Run(":8081") + app.Run(":8080") }