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
1. start syslog | |
docker run -it -p 514:514/tcp -p 601:601 --name syslog-ng balabit/syslog-ng:latest | |
2. tail the log | |
docker exec -it syslog-ng tail -f /var/log/messages | |
3. configure the app to use the syslog | |
fn update app myapp --syslog-url="tcp://127.0.0.1:514" |