111c55d56b
* Add Docker Desktop Development Environments config * Change port `5000` -> `8000` for Flask to avoid conflicts on recent macOS versions * Improve DB health check (for non-dev envs case) to avoid producing a bunch of log spam Co-authored-by: Guillaume Lours <guillaume@lours.me> Signed-off-by: Milas Bowman <milas.bowman@docker.com>
9 lines
126 B
Plaintext
Executable File
9 lines
126 B
Plaintext
Executable File
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
location / {
|
|
proxy_pass http://backend:8000;
|
|
}
|
|
|
|
}
|