1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 21:15:32 +02:00

docker compose: run specifying a project name (#10596)

This commit is contained in:
Luis Quiñones 2023-08-20 09:13:48 -06:00 committed by GitHub
parent 75a19d64d7
commit 9375f43e37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -15,9 +15,9 @@
`docker compose up --build`
- Inicia todos los contenedores usando un archivo compose alternativo:
- Inicia todos los contenedores especificando un nombre de proyecto y usando un archivo compose alternativo:
`docker compose --file {{ruta/al/directorio}} up`
`docker compose -p {{nombre_de_proyecto}} --file {{ruta/al/directorio}} up`
- Detiene todos los contenedores en ejecución:

View file

@ -15,9 +15,9 @@
`docker compose up --build`
- Start all containers using an alternate compose file:
- Start all containers by specifying a project name and using an alternate compose file:
`docker compose --file {{path/to/file}} up`
`docker compose -p {{project_name}} --file {{path/to/file}} up`
- Stop all running containers: