https://forgemia.inra.fr/asterics/asterics
Raw File
Tip revision: 7e382d03809f390ac5b13462fabae1d9e6e3f9cc authored by Nathalie Vialaneix on 24 August 2022, 15:19:40 UTC
changed scaling option of imputation by PCA to FALSE
Tip revision: 7e382d0
docker-compose.yml
version: "3.9"

services:
  python-vuejs:
    image: registry.forgemia.inra.fr/asterics/asterics/python-vuejs:latest
    ports:
      - "80:5000"
    volumes:
      - ./log_web:/home/asterics/log
      - ./data_web:/home/asterics/data
      - ./application.sample.cfg:/home/asterics/app/application.overwrite.cfg
    links:
      - r-backend
    entrypoint: ["sh", "/home/asterics/app/entrypoint_gunicorn.sh"]
    
  r-backend:
    image: registry.forgemia.inra.fr/asterics/asterics/r-backend:latest
    volumes:
      - ./data_web:/home/asterics/data
      - ./log_web:/home/asterics/log
      - ./application.sample.cfg:/home/asterics/app/application.overwrite.cfg
back to top