-
-
Notifications
You must be signed in to change notification settings - Fork 493
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #918 from kmehant/test_prod
Fix Server errors for download and compression feature and other required fixes
- Loading branch information
Showing
18 changed files
with
168 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM alpine:edge | ||
FROM alpine:3 | ||
|
||
# Defining dockerfile maintainer | ||
MAINTAINER SCoRe Lab Community <[email protected]> | ||
|
@@ -15,13 +15,13 @@ RUN apk update && \ | |
EXPOSE 6800 | ||
|
||
# Volume for storing the downloaded data | ||
VOLUME [ "/data" ] | ||
VOLUME [ "/downloads" ] | ||
|
||
# Changing the current directory to data so that the files get downloaded there | ||
WORKDIR /data | ||
WORKDIR /downloads | ||
|
||
# Starting the Aria2c RPC server | ||
CMD ["aria2c", "--enable-rpc", "--rpc-listen-all"] | ||
CMD ["aria2c", "--enable-rpc=true", "--rpc-listen-all", "--no-conf=true", "--disable-ipv6", "--console-log-level=debug"] | ||
|
||
# Labels for dockerfile information | ||
LABEL scorelab.bassa.name="Aria2c RPC server" \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.