fix: deploy

This commit is contained in:
Kilu 2024-06-29 00:57:48 +08:00
parent 91368a04b5
commit f7174727d4
3 changed files with 3 additions and 3 deletions

View File

@ -71,4 +71,4 @@ jobs:
cd appflowy-web-app
docker build -t appflowy-web-app .
docker rm -f appflowy-web-app || true
docker run -d -p 3000:80 --env-file .env --name appflowy-web-app appflowy-web-app
docker run -d -p 3000:3000 --env-file .env --name appflowy-web-app appflowy-web-app

View File

@ -26,6 +26,6 @@ COPY start.sh /app/start.sh
RUN chmod +x /app/start.sh
EXPOSE 80
EXPOSE 3000
CMD ["/app/start.sh"]

View File

@ -1,5 +1,5 @@
server {
listen 80;
listen 3000;
server_name localhost;
location / {