Browse Source

Change socket path

staging
David Ludwig 4 years ago
parent
commit
e4128bc63c
2 changed files with 2 additions and 1 deletions
  1. +1
    -1
      services/torrent-client/.env.example
  2. +1
    -0
      services/torrent-client/Dockerfile

+ 1
- 1
services/torrent-client/.env.example View File

@ -5,4 +5,4 @@ DB_USER = root
DB_PASSWORD_FILE = /run/secrets/mysql_root_password
DB_DATABASE = autoplex_torrent
IPC_SOCKET_PATH = /tmp/torrent_client.sock
IPC_SOCKET_PATH = /var/autoplex/ipc/torrent_client.sock

+ 1
- 0
services/torrent-client/Dockerfile View File

@ -1,6 +1,7 @@
# Alpine results in segfaults, will stick with slim for now...
FROM node:14-slim AS base
WORKDIR /app
RUN mkdir /var/autoplex && chown node:node -R /var/autoplex
RUN apt-get update
RUN apt-get full-upgrade -y


Loading…
Cancel
Save