diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c520dc7..843dde3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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}} diff --git a/Dockerfile b/Dockerfile index d566937..0c513e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/README.md b/README.md index d9a47f1..46a6618 100644 --- a/README.md +++ b/README.md @@ -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.