summaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: e758801a78a5d59973aa179ca3ed5eb8367b15ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: '2'
services:
    web:
        build:
            context: .
            dockerfile: Dockerfile.development
        environment:
            - FLASK_APP=main.py
            - FLASK_ENV=development
            - MAT2_ALLOW_ORIGIN_WHITELIST=*
        ports:
            - "5000:5000"
        volumes:
            - .:/mat2-web
        restart: always