Question: Test setup #797
-
Hi, My approach would be the following:
In case of an update I would try to update the ~/docker_testing setup by stopping the ~/docker setup first then upgrading via docker pull and see if it still runs. Would this work? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In case anyone needs this: In general my idea worked. I needed to add the following steps:
|
Beta Was this translation helpful? Give feedback.
In case anyone needs this:
In general my idea worked. I needed to add the following steps:
container_name: name_of_service
from all service entries in my docker compose file. Otherwise the testing setup creates the same names for the containers and conflicts with them.COMPOSE_PROJECT_NAME=test
and=release
to the .env files of my docker setups. This creates the containernames with the prefixestest
andrelease
and prevents conflicts between the names of the containers of the test and release setup.