mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 12:19:24 +00:00
Do all the additional Docker configuration needed
This commit is contained in:
@ -4,4 +4,5 @@ source ~/.local/share/omarchy/install/hyprlandia.sh
|
||||
source ~/.local/share/omarchy/install/desktop.sh
|
||||
source ~/.local/share/omarchy/install/terminal.sh
|
||||
source ~/.local/share/omarchy/install/development.sh
|
||||
source ~/.local/share/omarchy/install/docker.sh
|
||||
source ~/.local/share/omarchy/install/configurations.sh
|
||||
|
@ -1,5 +1,4 @@
|
||||
yay -S --noconfirm \
|
||||
nvim luarocks tree-sitter-cli \
|
||||
mise docker \
|
||||
lazygit lazydocker \
|
||||
github-cli
|
||||
mise github-cli \
|
||||
lazygit lazydocker
|
||||
|
11
install/docker.sh
Normal file
11
install/docker.sh
Normal file
@ -0,0 +1,11 @@
|
||||
yay -S --noconfirm docker
|
||||
|
||||
# Start Docker automatically
|
||||
sudo systemctl enable docker
|
||||
sudo systemctl start docker
|
||||
|
||||
# Give this user privileged Docker access
|
||||
sudo usermod -aG docker ${USER}
|
||||
|
||||
# Limit log size to avoid running out of disk
|
||||
echo '{"log-driver":"json-file","log-opts":{"max-size":"10m","max-file":"5"}}' | sudo tee /etc/docker/daemon.json
|
Reference in New Issue
Block a user