-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added docker-compose.log.yml for log viewer (#654)
- Loading branch information
1 parent
7988078
commit a9e50e8
Showing
2 changed files
with
21 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# This YAML file is used to run a log viewer for Docker containers. | ||
# | ||
# To minimize system load, it's recommended to set BINANCE_LOG_LEVEL to ERROR in the docker-compose.server.yml or docker-compose.yml file. This will allow logging to ERROR messages only. | ||
# | ||
# For the development environment: `docker-compose -f docker-compose.yml -f docker-compose.log.yml up -d --build` | ||
# For the production environment: `docker-compose -f docker-compose.server.yml -f docker-compose.log.yml up -d` | ||
|
||
services: | ||
dozzle: | ||
container_name: dozzle | ||
image: amir20/dozzle:latest | ||
restart: unless-stopped | ||
networks: | ||
- internal | ||
volumes: | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
ports: | ||
- 8888:8080 | ||
environment: | ||
- DOZZLE_ENABLE_ACTIONS=true |