Docker no route to host đến container khác
Dùng cổng 8080
Dùng cổng 8080
Sorry you have no rights to view this entry!
If you’re getting 413 Request Entity Too Large errors trying to upload with nginx.net/, you need to increase the size limit in nginx.conf . Add ‘client_max_body_size xxM’ inside the server section, where xx is the size (in megabytes) that you want to allow. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 . . . Read more
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
/etc/proftpd.conf <Global> PassivePorts 49152 65535 </Global>
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Nhập vào bằng Powershell $acl = Get-Acl \\fs1\shared\sales $AccessRule = New-Object System.Security.AccessControl.FileSystemAccessRule(“ENTERPRISE\T.Simpson”,”FullControl”,”Allow”) $acl.SetAccessRule($AccessRule) $acl | Set-Acl \\fs1\shared\sales
1. Stop the docker daemon sudo service docker stop 2. Add a configuration file to tell the docker daemon what is the location of the data directory Using your preferred text editor add a file named daemon.json under the directory /etc/docker. The file should have this content: { “graph”: “/path/to/your/docker” } of course . . . Read more