Skip to content

Commit

Permalink
Merge pull request #64 from ataseren/main
Browse files Browse the repository at this point in the history
Made changes on Docker related files for Unix-based systems
  • Loading branch information
ErdemOzgen authored Nov 5, 2024
2 parents e84e8bc + e1bb3ee commit 8c08e95
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ENV DEBIAN_FRONTEND=noninteractive

# Install necessary packages
RUN apt-get update -y && \
apt-get install -y wget curl bash sudo tzdata && \
apt-get install -y wget curl bash sudo tzdata git && \
echo "Etc/UTC" > /etc/timezone && \
ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime && \
dpkg-reconfigure --frontend noninteractive tzdata
Expand Down
9 changes: 4 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@ services:
- "8090:8090"
volumes:
- blackdagger:/home/blackdagger/.config/blackdagger
- ./dags:/home/blackdagger/.config/blackdagger/dags
- ./data:/home/blackdagger/.config/blackdagger/data
- ./logs:/home/blackdagger/.config/blackdagger/logs
- ./suspend:/home/blackdagger/.config/blackdagger/suspend
command: ["sh", "-c", "/usr/local/bin/startservices.sh"]
- ./dags:/home/blackdagger/.local/share/blackdagger/dags
- ./history:/home/blackdagger/.local/share/blackdagger/history
- ./logs:/home/blackdagger/.local/share/blackdagger/logs
- ./suspend:/home/blackdagger/.local/share/blackdagger/suspend

volumes:
blackdagger: {}

0 comments on commit 8c08e95

Please sign in to comment.