Harryis's picture
Add files using upload-large-folder tool
358dd8b verified
Raw
History Blame Contribute Delete
401 Bytes
# Compose file to run server in production mode without having to `docker run`.
# If .env specifies a LEAN_SERVER_DATABASE_URL, make sure it's up with schema deployed.
services:
server:
image: projectnumina/kimina-lean-server:2.0.0
build:
context: .
env_file:
- path: .env
required: false
ports:
- "80:${LEAN_SERVER_PORT:-8000}"
restart: unless-stopped