docker-compose deploy error when set two containers with the same image
error description
Deploying two container with the same image in a server, when run “docker-compose up -d” for the 1st container, the 1st container works fine. However, when activate the 2nd container, it makes the 1st container doesn’t work anymore.
wordpress:如何使widget只出現在特定page, 不使用plugin
ReferenceHow to Show or Hide Widgets on Specific Pages in WordPress
pppoeconf, ppa error
# enviroment & conditionRaspberry pi 4, Ubuntu 22.04 installed.pppoeconf has install, when run pppoeconf# error code” PPA kernel not enable# solutionapt install linux-modules-extra-raspi # referenceThread: PPPoE dialling with 22.04
mariadb, basic 101
CREATE DATABASE `dbName`;
CREATE USER ‘usrName’@localhost IDENTIFIED BY ‘password’;
GRANT ALL PRIVILEGES ON `dbName`.* TO ‘usrName’@localhost;
FLUSH PRIVILEGES;
1 2