Merge pull request #57 from kentora/issue-55

Changed uvicorn port to 80
This commit is contained in:
Hayden 2021-01-09 22:55:54 -09:00 committed by GitHub
commit 021a9025da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -26,4 +26,4 @@ ENV ENV prod
VOLUME [ "/app/data" ] VOLUME [ "/app/data" ]
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "9000"] CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "80"]

View file

@ -9,7 +9,7 @@ services:
container_name: mealie container_name: mealie
restart: always restart: always
ports: ports:
- 9090:9000 - 9090:80
environment: environment:
db_username: root db_username: root
db_password: example db_password: example