-
Notifications
You must be signed in to change notification settings - Fork 275
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 #7120 from pymedusa/release/release-0.3.5
Release 0.3.5
- Loading branch information
Showing
247 changed files
with
34,005 additions
and
15,966 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,6 +1,26 @@ | ||
.git | ||
.gitignore | ||
.github | ||
.build/ | ||
.dockerignore | ||
.git/ | ||
.gitattributes | ||
READMETEMPLATE.md | ||
README.md | ||
.github/ | ||
[Dd]ata/ | ||
[Ll]ogs/ | ||
**/__pycache__ | ||
**/.gitignore | ||
**/*.db | ||
**/*.db.* | ||
**/*.log | ||
**/*.py[cod] | ||
**/node_modules/ | ||
cache/ | ||
Dockerfile | ||
dredd/ | ||
hooks/ | ||
runscripts/ | ||
tests/ | ||
themes-default/ | ||
venv/ | ||
|
||
# Ignore Windows and MacOS specific files | ||
lib/native/**/*.dll | ||
lib/native/**/*.dylib |
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
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,23 +1,35 @@ | ||
FROM lsiobase/alpine.python:3.9 | ||
MAINTAINER a10kiloham | ||
FROM python:3.7-alpine3.9 | ||
LABEL maintainer="pymedusa" | ||
|
||
ARG GIT_BRANCH | ||
ARG GIT_COMMIT | ||
ENV MEDUSA_COMMIT_BRANCH $GIT_BRANCH | ||
ENV MEDUSA_COMMIT_HASH $GIT_COMMIT | ||
|
||
# set version label | ||
ARG BUILD_DATE | ||
ARG VERSION | ||
LABEL build_version="Version:- ${VERSION} Build-date:- ${BUILD_DATE}" | ||
LABEL build_version="Branch: $GIT_BRANCH | Commit: $GIT_COMMIT | Build-Date: $BUILD_DATE" | ||
|
||
# install packages | ||
# Install packages | ||
RUN \ | ||
apk add --no-cache \ | ||
--repository http://nl.alpinelinux.org/alpine/edge/community \ | ||
mediainfo gdbm py-gdbm | ||
# Update | ||
apk update \ | ||
&& \ | ||
# Runtime packages | ||
apk add --no-cache \ | ||
mediainfo \ | ||
tzdata \ | ||
unrar \ | ||
&& \ | ||
# Cleanup | ||
rm -rf \ | ||
/var/cache/apk/ | ||
|
||
# install app | ||
# Install app | ||
COPY . /app/medusa/ | ||
|
||
# copy local files | ||
COPY .docker/root/ / | ||
|
||
# ports and volumes | ||
# Ports and Volumes | ||
EXPOSE 8081 | ||
VOLUME /config /downloads /tv /anime | ||
|
||
WORKDIR /app/medusa | ||
CMD [ "python", "start.py", "--nolaunch", "--datadir", "/config" ] |
Oops, something went wrong.