Run Docker commands without sudo
- Add the docker group if it doesn't already exist
$ sudo groupadd docker
- Add the connected user $USER to the docker group
Optionally change the username to match your preferred user.
$ sudo gpasswd -a $USER docker
; Global settings for redshift | |
[redshift] | |
; Set the day and night screen temperatures | |
temp-day=3500 | |
temp-night=3500 | |
; Disable the smooth fade between temperatures when Redshift starts and stops. | |
; 0 will cause an immediate change between screen temperatures. | |
; 1 will gradually apply the new screen temperature over a couple of seconds. | |
fade=1 |
#!/bin/bash | |
B=$(xrandr --verbose | awk '/Brightness/ { print $2; exit }') | |
A=0.2 | |
C=$(echo "$B - $A" | bc) | |
M=$(xrandr | grep " connected" | cut -f1 -d " ") | |
xrandr --output $M --brightness $C |
<Box | |
component="img" | |
sx={{ | |
height: 233, | |
width: 350, | |
maxHeight: { xs: 233, md: 167 }, | |
maxWidth: { xs: 350, md: 250 }, | |
}} | |
alt="The house from the offer." | |
src="https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&w=350&dpr=2" |
[ | |
{ | |
"id": 0, | |
"title": "1", | |
"sublist": [ | |
{ | |
"id": 1, | |
"title": "1.1", | |
"sublist": [ | |
{ |
set -U fish_user_paths $HOME/.composer/vendor/bin |
make sure you exit any running programs that are using your microphone. sudo alsa force-reload | |
open pavucontrol or any volume control tool of yours | |
change the option "Headphones (unplugged)" | |
you might have to restart your computer |
<?php | |
namespace App\Models; | |
use Illuminate\Database\Eloquent\Factories\HasFactory; | |
use Illuminate\Database\Eloquent\Model; | |
class Article extends Model | |
{ |
Run Docker commands without sudo
$ sudo groupadd docker
Optionally change the username to match your preferred user.
$ sudo gpasswd -a $USER docker
#!/bin/bash | |
# Find the path to PhpStorm | |
phpstorm_path=$(find / -name "phpstorm.sh" 2>/dev/null | head -n 1) | |
# Check if PhpStorm was found | |
if [[ -z "$phpstorm_path" ]]; then | |
echo "PhpStorm not found" | |
exit 1 | |
fi |
docker run -d -p 66666:8000 -p 66667:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
starts the container in the background. The "-p" flag binds two container ports (8000 and 9000) to two host ports (66666 and 66667) respectively, allowing access to the portainer web interface from outside the container.
sets the name of the container as "portainer". The "--restart" flag ensures that the container is always restarted automatically if it stops or if the Docker daemon is restarted.