geospatial-data-converter / docker-compose.yml
Connor Sutton
added conversion tests
59879a5
raw
history blame
591 Bytes
version: '3.8'
services:
geospatial_data_converter:
image: geospatial_data_converter:latest
build: .
ports:
- "${APP_PORT:-7860}:${APP_PORT:-7860}"
working_dir: /workspace
command: [
"streamlit", "run",
"/home/appuser/geospatial_data_converter/app.py",
"--server.port", "${APP_PORT:-7860}",
"--server.address", "0.0.0.0",
"--server.enableXsrfProtection=false"
]
test:
image: geospatial_data_converter:latest # Use the same image as your main service
build: .
working_dir: /home/appuser
command: ["/bin/bash"]