diff --git a/docs/pilote/Pilote - TS - Back/getting_started/launch_local_application.md b/docs/pilote/Pilote - TS - Back/getting_started/launch_local_application.md
index 7efb6e23f91df92a42ab419cd5978b637997bd0b..be6894d8bfbeb5bfecc4f6dc869d9419931390f3 100644
--- a/docs/pilote/Pilote - TS - Back/getting_started/launch_local_application.md	
+++ b/docs/pilote/Pilote - TS - Back/getting_started/launch_local_application.md	
@@ -38,4 +38,28 @@ To start test defined just run the command in a PowerShell or Windows Powershell
 yarn test:watch
 ```
 
-Don't forget to uncomment ending row into beneficiary.service.ts file before to run the above command.
\ No newline at end of file
+Don't forget to uncomment ending row into beneficiary.service.ts file before to run the above command.
+
+
+### Usefull docker command
+
+- build : `docker build -t mps .`
+
+- run container : `docker-compose -f docker-compose.yml up --remove-orphans`
+
+- acceder à la db du container: `docker exec -it mps-travailleursocial-back_postgres_1 psql -U postgres`
+
+- delete image/containers: `docker system prune -a -f`
+
+- voir le contenu du container:	`docker exec -it <id_container> bash`
+
+- remove container: `docker container rm -f <id_container>`
+
+## Synapps environment 
+
+- check mps container : `docker ps --filter "name=mps"` or use this alias created : `dpm`
+
+- docker stop <id_container>
+
+- run a service from the docker-compose file: `docker-compose up -d <name_of_service>` |
+example: `docker-compose up -d mps-prod` , `docker-compose up -d app` , ....
\ No newline at end of file