Browse Source

Change socket path

master
David Ludwig 4 years ago
parent
commit
31dedbad8b
2 changed files with 2 additions and 1 deletions
  1. +1
    -1
      .env.example
  2. +1
    -0
      Dockerfile

+ 1
- 1
.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
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