Skip to content
Snippets Groups Projects
Select Git revision
  • 85114e23f41a9e801dd468bf3e751ea1fe505a47
  • 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

docker-compose.yml

Blame
  • David Beniamine's avatar
    8c7bd5b6
    History
    docker-compose.yml 510 B
    version: "3.3"
    services:
      httpd:
        build:
          context: .
          dockerfile: Dockerfile
          target: httpd
        restart: $RESTART
        environment:
          - CORS_ALLOWED_HOSTS
          - WEBPACK_MODE=production
        volumes:
          - $HTTP_FOLDER:/srv/data
          - ./Caddyfile:/etc/caddy/Caddyfile
    
      annotot:
        image: tetraslibre/annotot-app
        environment:
          - IP=${ANNOTOT_LISTEN_IP}
          - ENV=${ANNOTOT_ENV}
          - SECRET_KEY_BASE=${ANNOTOT_SECRET_KEY_BASE}
        volumes:
          - ./annotot-db:/app/db