Update readme.md Signed-off-by: rasmus <rsbendtsen@gmail.com> Update readme.md Update Dockerfile Update Dockerfile
17 lines
460 B
YAML
17 lines
460 B
YAML
services:
|
|
web:
|
|
image: git.rasmusbendtsen.dk/rasmus/madplaner:latest
|
|
container_name: madplaner
|
|
restart: always
|
|
ports:
|
|
- "${HOST_PORT:-80}:5000"
|
|
volumes:
|
|
# sqlite DB lives here
|
|
- ./instance:/app/instance
|
|
environment:
|
|
- FLASK_ENV=production
|
|
- OPENROUTER_API_KEY=${OPENROUTER_API_KEY}
|
|
- OPENROUTER_MODEL= ${OPENROUTER_MODEL}
|
|
- SECRET_KEY=${SECRET_KEY}
|
|
- SOURCECODE_LINK=${SOURCECODE_LINK}
|