Skip to content

Commit

Permalink
Make serve listen on all hosts
Browse files Browse the repository at this point in the history
  • Loading branch information
InCogNiTo124 committed Mar 31, 2022
1 parent ad68c4e commit 8254870
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ jobs:
key: ${{ secrets.SSH_KEY }}
script: |
cd ${{ github.event.repository.name }} &&
git checkout -f master &&
git pull -f &&
git fetch &&
git checkout -f origin/master &&
make
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ WORKDIR /orbit
COPY . .
RUN yarn install
RUN yarn build
CMD ["serve", "dist"]
EXPOSE 6090
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,9 @@ services:
- "dist"
- "-p"
- "6090"
networks:
- traefik_default

networks:
traefik_default:
external: true

0 comments on commit 8254870

Please sign in to comment.