File size: 155 Bytes
f065faf |
1 2 3 4 5 6 7 8 9 10 11 |
version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/home/user/app
ports:
- 8501:8501
|
f065faf |
1 2 3 4 5 6 7 8 9 10 11 |
version: '3'
services:
app:
build:
context: .
dockerfile: Dockerfile
volumes:
- .:/home/user/app
ports:
- 8501:8501
|