added dockerfile, so you can run this in 1 click
This commit is contained in:
parent
069d2b1667
commit
6652284dbc
4 changed files with 35 additions and 0 deletions
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
services:
|
||||
web:
|
||||
build: .
|
||||
container_name: dating
|
||||
ports:
|
||||
- "5000:5000"
|
||||
volumes:
|
||||
- ./src:/app/src
|
||||
- ./data:/app/data
|
||||
environment:
|
||||
- FLASK_APP=src/main.py
|
||||
- FLASK_RUN_HOST=0.0.0.0
|
||||
- FLASK_ENV=development
|
||||
restart: unless-stopped
|
||||
Loading…
Add table
Add a link
Reference in a new issue