version: '2'

services:
  manual:
    build: ./
    volumes:
      - ./:/druggable_sigma/
    working_dir: /druggable_sigma
    command: make doc.pdf
  vignette:
    build: ./
    volumes:
      - ./:/druggable_sigma/
    working_dir: /druggable_sigma
    command: make vignette
  build_doc:
    build: ./
    volumes:
      - ./:/druggable_sigma/
    working_dir: /druggable_sigma/
    command: make roxygenise
  pkg_test:
    build: ./
    volumes:
      - ./:/druggable_sigma/
    working_dir: /druggable_sigma/
    command: make devtools_test
  pkg_check:
    build: ./
    volumes:
      - ./:/druggable_sigma/
    working_dir: /druggable_sigma/
    command: make
  shiny:
    build: ./
    user: shiny
    command: /usr/bin/shiny-server /srv/shiny-server/shiny-server.conf 
    ports:
      - "3838:3838"
    volumes:
      - ./:/srv/

