mirror of
https://0xacab.org/jvoisin/mat2-web.git
synced 2025-02-24 00:59:59 -05:00
16 lines
358 B
YAML
16 lines
358 B
YAML
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
|