File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Expand file tree Collapse file tree 3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1+ .git
2+ __pycache__ /
3+ * .pyc
4+ * .pyo
5+ * .pyd
6+ * .db
7+ * .log
8+ venv /
9+ .env
10+ docker /
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,13 +2,15 @@ services:
22 streamlit :
33 hostname : streamlit
44 container_name : streamlit
5- build : .
5+ build :
6+ context : ..
7+ dockerfile : docker/Dockerfile
68 ports :
79 - " 8501:8501"
810 volumes :
9- - .:/app
11+ - ../ :/app
1012 env_file :
11- - .env
13+ - ../. env
1214 environment :
1315 - STREAMLIT_SERVER_PORT=8501
1416 - DATABASE_URL=postgresql://pgvector:pgvector@pgvector:5432/streamlit
@@ -27,7 +29,6 @@ services:
2729 - " 5432:5432"
2830 volumes :
2931 - pgdata:/var/lib/postgresql/data
30- - ./postgres/schema.sql:/docker-entrypoint-initdb.d/schema.sql
3132
3233volumes :
3334 pgdata :
You can’t perform that action at this time.
0 commit comments