update big
parent
4fa6563796
commit
2c26d64f1e
14
docker.md
14
docker.md
|
@ -4,7 +4,19 @@ Assume you use Archlinux.
|
||||||
|
|
||||||
Read [Docker](https://wiki.archlinux.org/index.php/Docker).
|
Read [Docker](https://wiki.archlinux.org/index.php/Docker).
|
||||||
|
|
||||||
After install docker, add your user to `docker` group.
|
Start/enable service:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
systemctl start docker.service
|
||||||
|
|
||||||
|
systemctl enable docker.service
|
||||||
|
```
|
||||||
|
|
||||||
|
Add your user to `docker` group:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
sudo usermod -aG docker $USER
|
||||||
|
```
|
||||||
|
|
||||||
Delete all images, containers, volumes, and networks that are not associated with a container (dangling):
|
Delete all images, containers, volumes, and networks that are not associated with a container (dangling):
|
||||||
|
|
||||||
|
|
4
kafka.md
4
kafka.md
|
@ -4,7 +4,9 @@ Assume you use Archlinux.
|
||||||
|
|
||||||
Read [Apache Kafka](https://wiki.archlinux.org/index.php/Apache_Kafka).
|
Read [Apache Kafka](https://wiki.archlinux.org/index.php/Apache_Kafka).
|
||||||
|
|
||||||
After install `kafka`, `zookeeper`, start service:
|
Install [kafka](https://aur.archlinux.org/packages/kafka/), [zookeeper](https://aur.archlinux.org/packages/zookeeper/).
|
||||||
|
|
||||||
|
Start service:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
systemctl start kafka.service
|
systemctl start kafka.service
|
||||||
|
|
2
redis.md
2
redis.md
|
@ -4,7 +4,7 @@ Assume you use Archlinux.
|
||||||
|
|
||||||
Read [Redis](https://wiki.archlinux.org/index.php/Redis).
|
Read [Redis](https://wiki.archlinux.org/index.php/Redis).
|
||||||
|
|
||||||
After install `redis`, start service:
|
Start service:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
systemctl start redis.service
|
systemctl start redis.service
|
||||||
|
|
Loading…
Reference in New Issue