Vincent Faliès - Artisan Codeur

Restart service in docker-compose

system linux docker container root docker-compose
Reading time: 1 minute, 0 seconds

When you use a docker-compose,you can want restart a service without restart all services.

Type the following command :

docker-compose up --no-deps containername

Continue reading...

Root inside a docker container

system linux docker container root
Reading time: 1 minute, 0 seconds

When you use a docker container, it could be interresting to be with root user.

It can be necessary to install some temporary tools for instance.

To simply you connect to the container with root user (id = 0), type the following command :

docker exec -u 0 -it mycontainer /bin/sh

Continue reading...

Fix broken package (Debian/Ubuntu)

system linux debian package ubuntu
Reading time: 1 minute, 0 seconds

Sometimes when you install manually some packages, they are broken and the command

sudo apt --fix-broken install

does not works !

In this case, 2 steps to correct:

  1. Soft correction
sudo apt-get update --fix-missing
sudo dpkg --configure -a
sudo apt-get install -f

If the problem of a...

Continue reading...

In development, when you updates records in database through a form, it's very interesting to known what have changed and what have not changed.

If you use Doctrine with entities, these informations are easily to determined. For instance with an user entity :

        $uow = $this->em->getUnitO...

Continue reading...

Git cheat sheet

web Git
Reading time: 1 minute, 0 seconds

With GIT, a great cheat sheet is more efficient than a long text !

Continue reading...