File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ services:
7
7
context : .
8
8
dockerfile : src/Airbnb.API/Dockerfile
9
9
ports :
10
- - " 9000 " # don't bind to host just expose 9000 to docker network
10
+ - " 20000 " # don't bind to host just expose 9000 to docker network
11
11
container_name : airbnb-api-1
12
12
restart : unless-stopped
13
13
hostname : AirbnbAPI1
Original file line number Diff line number Diff line change 12
12
listen 9001 ;
13
13
server_name localhost;
14
14
location / {
15
- proxy_pass http://airbnbapi1:9000 /;
15
+ proxy_pass http://airbnbapi1:20000 /;
16
16
}
17
17
}
18
18
}
Original file line number Diff line number Diff line change 16
16
17
17
builder . WebHost . UseKestrel ( kestrelServerOptions =>
18
18
{
19
- kestrelServerOptions . ListenAnyIP ( 9000 ) ;
19
+ kestrelServerOptions . ListenAnyIP ( 20000 ) ;
20
20
} ) ;
21
21
22
22
builder . Services . AddControllersWithViews ( ) ;
You can’t perform that action at this time.
0 commit comments