我有dev-docker-compose.yml
,具有多个后端和多个数据库,例如postgres
,redis
等...
现在,我想使用更改的服务名称来创建test-docker-compose.yml
例如,我有:
postgres:
image: postgres
restart: always
ports:
- "5432:5432"
volumes:
- postgres:/var/lib/postgresql/data
现在我将其更改为
test_postgres:
image: postgres
restart: always
ports:
- "5432:5432"
volumes:
- test_postgres:/var/lib/postgresql/data
但是当我用navicat
或dbeaver
连接到它时,我看到的是与第一个变量相同的值。
有人可以向我解释这种现象为什么存在以及如何解决吗?