Skip to content

Commit

Permalink
feat: added docker-compose.log.yml for log viewer (#654)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisleekr committed May 4, 2024
1 parent 7988078 commit a9e50e8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
## Unreleased

- Added multiple TradingView indicators - [#539](https://github.com/chrisleekr/binance-trading-bot/pull/539)
- Added docker-compose.log.yml for log viewer - [#654](https://github.com/chrisleekr/binance-trading-bot/pull/654)

## [0.0.98] - 2023-04-13

Expand Down
20 changes: 20 additions & 0 deletions docker-compose.log.yml
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

0 comments on commit a9e50e8

Please sign in to comment.