File size: 425 Bytes
4b5e485
 
 
 
 
 
 
 
 
 
 
 
 
73c8372
 
4b5e485
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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"
    ]