skip to Main Content

Other possible Docker log locations? – CentOS

Every source I read is saying the log locations are here: /var/lib/docker/containers/{container-id}/{container-id}-json.log. But when I check mine, all I see is /var/lib/docker/containers/{container-id}/ and when I ls that, it shows: checkpoints config.v2.json hostconfig.json hostname hosts resolv.conf resolv.conf.hash secrets shm No logs…

VIEW QUESTION

Docker php 8 nginx configuration

I tried add PHP 8 to my docker project but can't run it. My error maybe in nginx config file. File docker-compose.yml: version: "3.7" services: phpfpm: image: php:8.0.2-fpm-alpine3.13 container_name: phpfpm volumes: - ./php/src:/var/www/html - ./php/config/php.ini:/usr/local/etc/php/conf.d/php.ini networks: - Project nginx: image:…

VIEW QUESTION
Back To Top
Search