Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
Add default server_manager log configs
Browse files Browse the repository at this point in the history
Specifies environment variables in the main docker compose to configure
the server manager's logs, so that they are informative but clean.
Having the variables already defined also makes it easier for users to
change them as desired.
  • Loading branch information
miltonjonat authored and tuler committed Dec 6, 2022
1 parent 33d43ff commit d2397a3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker-compose-host-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ services:
image: cartesi/host-server-manager:0.7.0
ports:
- "5004:5004"
environment:
- RUST_LOG=warn
2 changes: 2 additions & 0 deletions docker-compose-host.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ services:
image: cartesi/host-server-manager:0.7.0
ports:
- "5004:5004"
environment:
- RUST_LOG=warn

deployer:
command: [
Expand Down
3 changes: 3 additions & 0 deletions docker-compose-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ services:
retries: 5
volumes:
- machine:/opt/cartesi/share/dapp-bin
environment:
- SERVER_MANAGER_LOG_LEVEL=warning
- REMOTE_CARTESI_MACHINE_LOG_LEVEL=info

rollups_inspect_server:
image: cartesi/rollups-inspect-server:0.8.0
Expand Down
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ services:
retries: 5
volumes:
- machine:/opt/cartesi/share/dapp-bin
environment:
- SERVER_MANAGER_LOG_LEVEL=warning
- REMOTE_CARTESI_MACHINE_LOG_LEVEL=info

deployer:
image: cartesi/rollups-cli:0.8.0
Expand Down

0 comments on commit d2397a3

Please sign in to comment.