0

After installing websphere liberty into a docker container, logs are no longer under wlp/usr/servers/server1/logs.

I can tail the log by :

docker logs --tail=all -f $id

but where are they in the container?

Andy Guibert
  • 41,446
  • 8
  • 38
  • 61
Qing Song
  • 517
  • 1
  • 3
  • 12

2 Answers2

3

The websphere-docker image from Docker Hub writes the log files to /logs. This is documented in docker hub.

Alasdair
  • 3,071
  • 15
  • 20
0

Hey inside a docker container, logs will be stored under /opt/ibm/wlp/output/defaultServer/logs path.

m4n0
  • 29,823
  • 27
  • 76
  • 89