Skip to content

Commit

Permalink
feat: added docker-compose.log.yml for log viewer
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisleekr committed May 4, 2024
1 parent 7988078 commit 472f81c
Showing 1 changed file with 20 additions and 0 deletions.
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 472f81c

Please sign in to comment.