Skip to content
Snippets Groups Projects
Select Git revision
  • d663f108aef33bfc840c20da0c4bcb876bd6c759
  • main default protected
  • 24-everything-from-git
  • 45-create-new-poc-deployment-with-docker
  • 44-add-a-cli-tool
  • improve-deployment
  • 31-backend
  • bash-script-bug-fix
  • upgrades_submodules
  • 24-dependencies-build-nested-watch
  • 24-dependencies-build-using-workspaces
  • 24-dependencies-build
  • wip-all-local
  • 10-annotot
  • 3-annotation-plugin-showing-up
15 results

dev.yml

Blame
  • dev.yml 381 B
    version: "3.3"
    services:
      devserver:
        build:
          context: .
          target: mirador
        restart: $DEV_RESTART
        ports:
          - $DEV_PORT:9000
        environment:
          - CORS_ALLOWED_HOSTS
          - WEBPACK_MODE=development
          - HTTP_FOLDER
          - DEV_PORT
        volumes:
          - ./:/opt
    
      httpd:
        ports:
          - $PORT:80
    
      annotot:
        ports:
          - ${ANNOTOT_PORT}:3000