Vtiger tpl chèn thêm và gọi hàm mẹ
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
[sourcecode] version: "2" services: nginx-proxy: image: jwilder/nginx-proxy container_name: nginx-proxy ports: – "80:80" volumes: – /var/run/docker.sock:/tmp/docker.sock:ro – ./nginx:/etc/nginx/conf.d db: image: mariadb ports: – "8001:3306" volumes: – ./db:/var/lib/mysql environment: – MYSQL_ROOT_PASSWORD=secret phpmyadmin: image: phpmyadmin/phpmyadmin:latest ports: – "8002:80" links: – db:mysql environment: – MYSQL_ROOT_PASSWORD=secret – VIRTUAL_HOST=phpmyadmin.app – VIRTUAL_PORT=8002 wp: image: wordpress ports: – . . . Read more
[sourcecode language=”powershell”] docker rm -f $(docker ps -a -q) docker rmi -f $(docker images -q) [/sourcecode]
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
Cần cài CentOS 7 không phải là 6 vì bản 6 không hỗ trợ docker-ce phiên bản mới sẽ dẫn đến các file docker compose version mới không chạy được [sourcecode language=”powershell”] yum check-update curl -fsSL https://get.docker.com/ | sh systemctl start docker systemctl enable docker install -y epel-release yum install . . . Read more
Sorry you have no rights to view this entry!
Sorry you have no rights to view this entry!
[sourcecode language=”powershell”] df /dev/vda2 | awk ‘{if (NR==2) {gsub("([A-Z])\\w+","" ,$4); print $4 }}’ > /var/www/html/xxx.php [/sourcecode]