fix: Another bug fix regarding docker production deployments

This commit is contained in:
Aleksi Lassila
2023-08-11 15:19:01 +03:00
parent 6003530592
commit 91bb763240
3 changed files with 5 additions and 5 deletions

View File

@@ -46,7 +46,7 @@ jobs:
uses: actions/checkout@v3
- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
uses: docker/login-action@v2
with:
registry: ${{env.REGISTRY}}
username: ${{github.actor}}

View File

@@ -26,7 +26,7 @@ COPY package-lock.json .
RUN npm ci --omit dev
CMD [ "npm", "run", "deply" ]
CMD [ "npm", "run", "deploy" ]
FROM node:18 as development

View File

@@ -36,10 +36,9 @@ version: '3.8'
name: reiverr
services:
reiverr-frontend:
container_name: reiverr
reiverr:
image: ghcr.io/aleksilassila/reiverr:latest
restart: unless-stopped
container_name: reiverr
ports:
- 9494:9494
environment:
@@ -49,6 +48,7 @@ services:
PUBLIC_SONARR_BASE_URL: http://127.0.0.1:8989
PUBLIC_JELLYFIN_API_KEY: yourapikeyhere
PUBLIC_JELLYFIN_URL: http://127.0.0.1:8096
restart: unless-stopped
```
### Reiverr will be accessible via port 9494 by default.