mirror of
https://github.com/anonymousx97/social-dl.git
synced 2025-02-20 11:13:19 +08:00
Fixes Instagram: Stop api call if no key is added. Reddit: Fix bug for links without any media. Youtube: Stop PlayLists and Channel Urls from triggering download.MediaHandler: Clean up repetitive code and squash it. Client & Bot: Improve Error Logging. Authorise: Fix Chat name for DMs. Additions Add: Dockerfile, run Add: Plugin loader. Beta: Bot Mode.
11 lines
406 B
Docker
11 lines
406 B
Docker
FROM ghcr.io/anonymousx97/build_essentials:main
|
|
|
|
# adding email and username to the bot
|
|
RUN git config --global user.email "88324835+anonymousx97@users.noreply.github" \
|
|
git config --global user.name "anonymousx97"
|
|
|
|
# Exposing Ports for Web Server
|
|
EXPOSE 8080 22 8022
|
|
|
|
# Adding Remote Container Start Command
|
|
CMD bash -c "$(curl -fsSL https://raw.githubusercontent.com/anonymousx97/Docker/main/start)" |