started file for docker related things

This commit is contained in:
scbj
2024-11-18 09:00:44 +01:00
parent 24866af294
commit 8047768791

15
docker.md Normal file
View File

@@ -0,0 +1,15 @@
# docker
- [start docker service](#start-docker-service)
## start docker service
To start the docker service, use `systemctl`:
```bash
sudo systemctl start docker
```
If you want the docker service to be started at boot, use:
```bash
sudo systemctl enable --now docker
```