Revert "docs(fish): update abbreviations from Docker to Podman"

This reverts commit 4cc062cd0c.
This commit is contained in:
Lucien Cartier-Tilet 2024-02-07 19:33:23 +01:00
parent 610046ce96
commit 00b40eca02
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA

View File

@ -317,39 +317,23 @@ Here is the corresponding fish configuration:
<<generate-abbr(table=abbr-cmake)>> <<generate-abbr(table=abbr-cmake)>>
#+END_SRC #+END_SRC
**** Docker and Podman **** Docker
# And of course, when it comes to Docker Compose, I don't have time to write the And of course, when it comes to Docker Compose, I don't have time to write the
# full command, so I use these instead. Actually, let me rephrase that: I used to use full command, so I use these instead.
I used to use Docker on my machine, but I switched to Podman. Still,
my muscle memory is really strong and I keep trying to type my old
Docker abbreviations. So, I keep them, but I also have a slight
variation for each one of them for Podman.
#+NAME: abbr-docker #+NAME: abbr-docker
| abbreviation | command | | abbreviation | command |
|--------------+------------------------------| |--------------+------------------------------|
| dc | podman-compose | | dc | docker-compose |
| dcb | podman-compose build | | dcb | docker-compose build |
| dcd | podman-compose down | | dcd | docker-compose down |
| dcl | podman-compose logs | | dcl | docker-compose logs |
| dclf | podman-compose logs -f | | dclf | docker-compose logs -f |
| dcp | podman-compose pull | | dcp | docker-compose pull |
| dcr | podman-compose run --rm | | dcr | docker-compose run --rm |
| dcu | podman-compose up | | dcu | docker-compose up |
| dcub | podman-compose up --build | | dcub | docker-compose up --build |
| dcud | podman-compose up -d | | dcud | docker-compose up -d |
| dcudb | podman-compose up -d --build | | dcudb | docker-compose up -d --build |
| pc | podman-compose |
| pcb | podman-compose build |
| pcd | podman-compose down |
| pcl | podman-compose logs |
| pclf | podman-compose logs -f |
| pcp | podman-compose pull |
| pcr | podman-compose run --rm |
| pcu | podman-compose up |
| pcub | podman-compose up --build |
| pcud | podman-compose up -d |
| pcudb | podman-compose up -d --build |
Here is the corresponding fish configuration: Here is the corresponding fish configuration:
#+BEGIN_SRC fish #+BEGIN_SRC fish