fix: Another bug fix regarding docker production deployments
This commit is contained in:
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
@@ -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}}
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user