Browse Source

Change socket path

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

+ 2
- 2
.env.example View File

@ -29,10 +29,10 @@ DB_DATABASE = autoplex_request
# Interfaces ---------------------------------------------------------------------------------------
# Seeker IPC socket path
SEEKER_IPC_SOCKET = /tmp/seeker.sock
SEEKER_IPC_SOCKET = /var/autoplex/ipc/seeker.sock
# Torrent client IPC socket path
TORRENT_CLIENT_IPC_SOCKET = /tmp/torrent_client.sock
TORRENT_CLIENT_IPC_SOCKET = /var/autoplex/ipc/torrent_client.sock
# Web server port
WEBSERVER_PORT = 3200

+ 1
- 0
Dockerfile View File

@ -1,5 +1,6 @@
FROM node:14-alpine AS base
WORKDIR /app
RUN mkdir /var/autoplex && chown node:node -R /var/autoplex
# An image containing necessary components for building
FROM base AS builder


Loading…
Cancel
Save