diff --git a/docker-compose.yml b/docker-compose.yml index 919275c..69d004f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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 diff --git a/main.go b/main.go index a7309fb..d168702 100644 --- a/main.go +++ b/main.go @@ -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() {