Skip to content
Snippets Groups Projects
Select Git revision
  • bozze
  • community default
  • renovate/glob-10.x
  • master protected
  • renovate/mini-css-extract-plugin-2.x
  • renovate/css-loader-7.x
  • renovate/css-loader-6.x
  • renovate/purgecss-webpack-plugin-6.x
  • renovate/bootstrap-5.x
  • renovate/docker.io-library-golang-1.x
  • renovate/corejs-typeahead-1.x
  • revision2023
  • bookworm
  • not_privacy_only
  • renovate/golang-1.x
  • renovate/glob-9.x
  • renovate/glob-8.x
  • how-to-archive-emails
  • renovate/glob-7.x
  • webpack-process
  • renovate/popperjs-core-2.x
  • latest-node-from-scratch
22 results

config

Blame
  • docker-compose.yml 490 B
    # for local development
    version: '3.7'
    services:
      mat2-web-frontend:
        build:
          context: .
          dockerfile: ./Dockerfile.dev
          target: build-stage
        environment:
          - MAT2_API_URL_DEV=http://localhost:5000/
        ports:
          - '8080:8080'
        volumes:
          - '.:/app'
        command: /bin/sh -c "yarn && quasar dev"
    
      mat2-web-api:
        # use latest on purpose to detect when backend changes
        image: registry.0xacab.org/jvoisin/mat2-web:latest
        ports:
          - "5000:80"