-
Урок 1. 00:00:541- Introduction
-
Урок 2. 00:00:442- Prerequisites
-
Урок 3. 00:00:473- How to Take this Course
-
Урок 4. 00:00:451- Introduction
-
Урок 5. 00:03:162- What is Docker
-
Урок 6. 00:03:153- Virtual Machines vs Containers
-
Урок 7. 00:02:154- Docker Architecture
-
Урок 8. 00:03:365- Installing Docker
-
Урок 9. 00:02:176- Development Workflow
-
Урок 10. 00:09:337- Docker in Action
-
Урок 11. 00:00:531- Introduction
-
Урок 12. 00:01:032- Linux Distributions
-
Урок 13. 00:05:123- Running Linux
-
Урок 14. 00:03:354- Managing Packages
-
Урок 15. 00:01:595- Linux File System
-
Урок 16. 00:04:206- Navigating the File System
-
Урок 17. 00:03:277- Manipulating Files and Directories
-
Урок 18. 00:03:558- Editing and Viewing Files
-
Урок 19. 00:03:059- Redirection
-
Урок 20. 00:02:1910- Searching for Text
-
Урок 21. 00:03:2411- Finding Files and Directories
-
Урок 22. 00:05:0612- Chaining Commands
-
Урок 23. 00:07:3613- Environment Variables
-
Урок 24. 00:02:5614- Managing Processes
-
Урок 25. 00:07:0215- Managing Users
-
Урок 26. 00:03:1816- Managing Groups
-
Урок 27. 00:05:2417- File Permissions
-
Урок 28. 00:00:351- Introduction
-
Урок 29. 00:02:422- Images and Containers
-
Урок 30. 00:03:083- Sample Web Application
-
Урок 31. 00:01:214- Dockerfile Instructions
-
Урок 32. 00:07:305- Choosing the Right Base Image
-
Урок 33. 00:05:336- Copying Files and Directories
-
Урок 34. 00:03:047- Excluding Files and Directories
-
Урок 35. 00:01:278- Running Commands
-
Урок 36. 00:01:269- Setting Environment Variables
-
Урок 37. 00:01:2810- Exposing Ports
-
Урок 38. 00:04:5011- Setting the User
-
Урок 39. 00:06:0712- Defining Entrypoints
-
Урок 40. 00:06:3913- Speeding Up Builds
-
Урок 41. 00:02:4714- Removing Images
-
Урок 42. 00:05:3315- Tagging Images
-
Урок 43. 00:04:2016- Sharing Images
-
Урок 44. 00:03:2917- Saving and Loading Images
-
Урок 45. 00:00:361- Introduction
-
Урок 46. 00:03:042- Starting Containers
-
Урок 47. 00:02:073- Viewing the Logs
-
Урок 48. 00:02:074- Publishing Ports
-
Урок 49. 00:01:595- Executing Commands in Running Containers
-
Урок 50. 00:00:586- Stopping and Starting Containers
-
Урок 51. 00:01:487- Removing Containers
-
Урок 52. 00:01:348- Containers File System
-
Урок 53. 00:05:569- Persisting Data using Volumes
-
Урок 54. 00:02:2110- Copying Files between the Host and Containers
-
Урок 55. 00:04:2011- Sharing the Source Code with a Container
-
Урок 56. 00:00:481- Introduction
-
Урок 57. 00:01:132- Installing Docker Compose
-
Урок 58. 00:03:083- Cleaning Up our Workspace
-
Урок 59. 00:03:114- The Sample Web Application
-
Урок 60. 00:04:135- JSON and YAML Formats
-
Урок 61. 00:08:586- Creating a Compose File
-
Урок 62. 00:03:387- Building Images
-
Урок 63. 00:02:118- Starting and Stopping the Application
-
Урок 64. 00:04:469- Docker Networking
-
Урок 65. 00:01:2910- Viewing Logs
-
Урок 66. 00:04:0411- Publishing Changes
-
Урок 67. 00:07:2112- Migrating the Database
-
Урок 68. 00:02:4813- Running Tests
-
Урок 69. 00:00:461- Introduction
-
Урок 70. 00:01:342- Deployment Options
-
Урок 71. 00:01:043- Getting a Virtual Private Server
-
Урок 72. 00:01:024- Installing Docker Machine
-
Урок 73. 00:04:345- Provisioning a Host
-
Урок 74. 00:02:046- Connecting to the Host
-
Урок 75. 00:03:057- Defining the Production Configuration
-
Урок 76. 00:08:168- Reducing the Image Size
-
Урок 77. 00:04:329- Deploying the Application
-
Урок 78. 00:07:0410- Troubleshooting Deployment Issues
-
Урок 79. 00:02:4311- Publishing Changes
- Категории
- Источники
- Все курсы
- Разделы
- Книги
>: docker run -d -p 5001:3000 -v $(pwd):/app react-app
The problem with the command is that $(pwd) would give us an absolute path in a windows-style (backslashes) whereas we need to provide a unix-style path - meaning all path is expected to be with forward slashes. If I manually change windows-style to unix-style path the container is obviously created though it won't run since it throws an error.
https://forum.codewithmosh.com/t/the-ultimate-docker-course-55th-lesson-on-windows-10/5697