Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I rename docker-compose.yml containers group in docker desktop?

I've built a docker-compose.yml file however I see by default Docker Desktop App names the group of containers by parent folder name.

enter image description here

I need to change that name docker to another name

This's my file explorer path: enter image description here

Thanks

like image 705
Ahmed Sayed Sk Avatar asked Sep 03 '25 15:09

Ahmed Sayed Sk


2 Answers

declare name in the docker-compose.yml file and make sure to run as docker compose ... not docker-compose .... source: https://github.com/docker/compose/issues/1123#issuecomment-1130002420

name: project-name
services:
  app:
    build:
      context: .
like image 110
Mejan Avatar answered Sep 05 '25 16:09

Mejan


COMPOSE_PROJECT_NAME

Sets the project name. This value is prepended along with the service name to the container on start up. For example, if your project name is myapp and it includes two services db and web, then Compose starts containers named myapp_db_1 and myapp_web_1 respectively.

Setting this is optional. If you do not set this, the COMPOSE_PROJECT_NAME defaults to the basename of the project directory.

You can either set it by mentioning it in the .env file or while executing the docker-compose file.

By mentioning it in .env file

Create a .env file in the directory where docker-compose file is present and add the following statement.

COMPOSE_PROJECT_NAME = <project_name>

By mentioning it while executing the docker-compose file with the help of flag -p

docker-compose -f <docker_compose_file> -p "<project_name>" up
like image 22
b.s Avatar answered Sep 05 '25 16:09

b.s