本篇文章记录php的composer组件包一些用法!
引用本地未发布的包
要引用本地未发布的包,只需要在composer.json中repositories
仓库为为本地项目地址即可,如下所示:
1 | { |
A wanderer capable of grasping the beauty of the grass, with a heart full of ancient charm, and a fondness for playful wit. Those who understand my words are knowledgeable individuals; those who decipher my code truly comprehend the essence. I am a wandering code swordsman, carrying my skills and riding freely through the digital world.
时常记不住定时任务一些配置规则,所以这边记录一下!☘
Cron 定时任务是一种在 Unix/Linux 系统中用于执行预定时间间隔的任务的机制。它使用 cron 表达式来定义任务的执行时间。
Cron 表达式由空格分隔的五个字段组成,分别表示分钟、小时、日期、月份和星期几。每个字段可以接受不同的取值范围和特殊字符。
1 | minute hour day month week command 顺序:分 时 日 月 周 |
一些特殊部署场景下,需要指定某个容器ip以便于访问。可以使用Docker的网络模式来间接地控制容器的IP地址,所以这边记录一下分别在单独docker与docker-compose配置示例!☘
1 | docker network create --subnet=172.0.0.0/24 my-docker-net |
1 | docker run -d --net=my-docker-net --ip=172.0.0.3 --name=[容器名字] [镜像名字] |
--net
指定网络--ip
指定ip
通过IP172.0.0.3
访问该容器了。
在docker-compose.yml文件中networks
节点进行配置
1 | networks: |
networks
节点进行配置固定ip1 | version: "3" |
以上命令对compose的网络配置一个172.0.0.0/24网段,然后指定其中nginx
指定ip为172.0.0.3