Flask Application to manage gene panels
- docker
To run the application you need to start the following container specified at docker-compose.yaml:
- panel_master
First, make sure that all volumes from from panel_master are available. Modify the paths of the local mounted volumes (underlined) as needed:
- /home/bdelolmo/PANELS_DB/:/app/panels_db
- /home/bdelolmo/PANELS_DB/data:/app/data
Then, modify the ports parameter and the FLASK_RUN_HOST environment variable as needed.
version: '3.7'
services:
panel_master:
build: .
ports:
- 8000:8000
volumes:
- .:/app
- /home/bdelolmo/PANELS_DB/:/app/panels_db
- /home/bdelolmo/PANELS_DB/data:/app/data
environment:
FLASK_ENV: development
APP_PORT: "8000"
FLASK_RUN_HOST: "172.16.78.81:8000"