13 lines
316 B
Plaintext
13 lines
316 B
Plaintext
services:
|
|
web:
|
|
build: .
|
|
ports:
|
|
- "5001:5000"
|
|
volumes:
|
|
- ./data:/app/data
|
|
environment:
|
|
- FLASK_APP=app.py
|
|
- FLASK_ENV=production
|
|
- LOGIN_PASSWORD=changeme
|
|
- ALLOWED_IP_RANGES=213.178.68.218/29,192.168.0.0/24,192.168.177.0/24
|
|
command: flask run --host=0.0.0.0 |