-
Notifications
You must be signed in to change notification settings - Fork 1
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 #101 from aviate-labs/hotfix/fix-docker-logs-file-…
…not-found-issue bind the logs inside docker-compose.yml
- Loading branch information
Showing
3 changed files
with
14 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,6 @@ | |
*~ | ||
.vscode/ | ||
|
||
# logs | ||
logs/ | ||
|
||
# misc | ||
*.csv | ||
|
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 |
---|---|---|
|
@@ -13,3 +13,6 @@ services: | |
- type: bind | ||
source: .env | ||
target: /app/.env | ||
- type: bind | ||
source: ./logs/ | ||
target: /app/logs/ |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# This `logs/` folder needs to exist for docker to be able to bind to it. | ||
# We use this gitignore file to commit the folder to the repo, so it exists | ||
# in our github workflow and can be run with CI. | ||
# Empty directories are not tracked by default in git. | ||
|
||
|
||
# Ignore everything in this directory | ||
* | ||
# Except this file | ||
!.gitignore | ||
|