Issue
Running docker-compose down && docker-compose up -d pulls the latest Ryot image even without invoking docker-compose pull
Steps to Recreate
- Use
image: 'ignisda/ryot:latest' in docker-compose.yml
- Run
docker-compose down && docker-compose up -d
Expected Behavior: Docker stops all containers. Docker then starts all containers without updating.
Observed Behavior: Docker stops all containers. Docker updates Ryot container without running docker-compose pull. Docker starts all containers.
Other Notes
Locking Ryot to a version via image: 'ignisda/ryot:v10.2.1' removes the issue and Docker stops and starts containers without updating.
Issue
Running
docker-compose down && docker-compose up -dpulls the latest Ryot image even without invokingdocker-compose pullSteps to Recreate
image: 'ignisda/ryot:latest'indocker-compose.ymldocker-compose down && docker-compose up -dExpected Behavior: Docker stops all containers. Docker then starts all containers without updating.
Observed Behavior: Docker stops all containers. Docker updates Ryot container without running
docker-compose pull. Docker starts all containers.Other Notes
Locking Ryot to a version via
image: 'ignisda/ryot:v10.2.1'removes the issue and Docker stops and starts containers without updating.