Guest User

Untitled

a guest
Jul 18th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. username@docker-container:/var/www/my-project/var/log$ ls -la
  2. total 430
  3. drwxr-xr-x 2 root root 0 Jul 18 07:34 .
  4. drwxr-xr-x 2 root root 0 Jul 11 14:25 ..
  5. -rwxr-xr-x 1 root root 0 Jul 18 07:35 .gitkeep
  6. -rwxr-xr-x 1 root root 40815 Jul 18 07:30 access.log
  7. -rwxr-xr-x 1 root root 396308 Jul 18 07:37 dev.log
  8. -rwxr-xr-x 1 root root 340 Jul 17 16:08 error.log
  9. username@docker-container:/var/www/my-project/var/log$ cat dev.log
  10. cat: dev.log: No such file or directory
  11. username@docker-container:/var/www/my-project/var/log$ cat dev.log
  12. cat: dev.log: No such file or directory
  13. username@docker-container:/var/www/my-project/var/log$ cat dev.log
  14. [2018-07-18 09:34:10] doctrine.DEBUG: SELECT t0.store AS ... (ETC)
  15.  
  16. (… This time it was possible to be read! …)
  17.  
  18.  
  19. (... Then I try again and I can't open it, even though the file is still there ...)
  20.  
  21. username@docker-container:/var/www/my-project/var/log$ cat dev.log
  22. cat: dev.log: No such file or directory
  23.  
  24. username@docker-container:/var/www/my-project/var/log$ ls -la
  25. total 434
  26. drwxr-xr-x 2 root root 0 Jul 18 07:34 .
  27. drwxr-xr-x 2 root root 0 Jul 11 14:25 ..
  28. -rwxr-xr-x 1 root root 0 Jul 18 07:35 .gitkeep
  29. -rwxr-xr-x 1 root root 40815 Jul 18 07:30 access.log
  30. -rwxr-xr-x 1 root root 398678 Jul 18 07:37 dev.log
  31. -rwxr-xr-x 1 root root 340 Jul 17 16:08 error.log
  32.  
  33. version: '3'
  34. services:
  35.  
  36. server:
  37. build: docker/server
  38. container_name: docker-container
  39. volumes:
  40. - /d/shared/my-project:/var/www/my-project
Add Comment
Please, Sign In to add comment