11 lines
191 B
YAML
11 lines
191 B
YAML
|
version: "3"
|
||
|
services:
|
||
|
keepyourmouthshut:
|
||
|
image: keepyourmouthshut:latest
|
||
|
build: ./app
|
||
|
command: streamlit run src/main.py --server.port 8080
|
||
|
volumes:
|
||
|
- ./src/:/app/src
|
||
|
ports:
|
||
|
- 8080:8080
|