Spaces:
No application file
No application file
Commit
·
b360987
1
Parent(s):
8112d2c
docker-compose.yaml para o script FastAPI
Browse files
1_Building_a_Python_Weather_App_using_Docker_and_Cloud_Run/docker-compose.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: '3.8'
|
2 |
+
|
3 |
+
services:
|
4 |
+
app:
|
5 |
+
build:
|
6 |
+
context: .
|
7 |
+
image: app_fastapi:1.0
|
8 |
+
ports:
|
9 |
+
- "8080:8080"
|
10 |
+
restart: always
|
11 |
+
networks:
|
12 |
+
- appnet
|
13 |
+
|
14 |
+
networks:
|
15 |
+
appnet:
|