This website works better with JavaScript.
Home
Explore
Help
Sign In
Autoplex
/
autoplex-legacy
Watch
1
Star
0
Fork
0
Code
Issues
1
Pull Requests
0
Projects
0
Releases
1
Wiki
Activity
Browse Source
Change socket path
staging
David Ludwig
4 years ago
parent
d960055813
commit
e4128bc63c
2 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
services/torrent-client/.env.example
+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
Write
Preview
Loading…
Cancel
Save