Fix container port

This commit is contained in:
Dominic Grimm 2023-06-02 16:31:37 +02:00
parent a90434f020
commit 30167bdd8d
Signed by: dergrimm
GPG Key ID: B6FFE500AAD54A3A
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ services:
volumes:
- fiddle:/data
ports:
- 8080:8080
- 80:80
depends_on:
- db

View File

@ -112,7 +112,7 @@ async fn main() -> Result<()> {
)
.default_service(web::to(not_found))
})
.bind(("0.0.0.0", 8080))?
.bind(("0.0.0.0", 80))?
.run()
.await?;