File size: 201 Bytes
ddcfeb8
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash

# Fail if any of the commands below fail.
set -e

python docker_start.py
gunicorn lilac.server:app \
  --bind 0.0.0.0:5432 \
  --preload -k uvicorn.workers.UvicornWorker \
  --timeout 120