13 lines
240 B
YAML
13 lines
240 B
YAML
|
|
services:
|
||
|
|
web-view:
|
||
|
|
build: .
|
||
|
|
container_name: lichess-web-view
|
||
|
|
ports:
|
||
|
|
- "5000:5000"
|
||
|
|
volumes:
|
||
|
|
- ../LichessClientTG_bot/data:/app/data:ro
|
||
|
|
restart: unless-stopped
|
||
|
|
environment:
|
||
|
|
- FLASK_ENV=production
|
||
|
|
|