Browse Source

Change socket path

staging
David Ludwig 4 years ago
parent
commit
78f1ff8faf
2 changed files with 3 additions and 2 deletions
  1. +2
    -2
      services/request/.env.example
  2. +1
    -0
      services/request/Dockerfile

+ 2
- 2
services/request/.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
services/request/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