diff --git a/clr_test/qemu-alpine/docker-compose.yml b/clr_test/qemu-alpine/docker-compose.yml index b8de1e53f..32c1c275d 100644 --- a/clr_test/qemu-alpine/docker-compose.yml +++ b/clr_test/qemu-alpine/docker-compose.yml @@ -11,7 +11,7 @@ services: - NET_ADMIN ports: - 8006:8006 - - 2222:22 + - 2233:22 stop_grace_period: 2m volumes: - ./mounted:/storage \ No newline at end of file diff --git a/clr_test/run_test_docker_containers.py b/clr_test/run_test_docker_containers.py index 74348aa3b..5b232a939 100644 --- a/clr_test/run_test_docker_containers.py +++ b/clr_test/run_test_docker_containers.py @@ -16,15 +16,15 @@ def run_docker(folder_name): os.chdir(QEMU_ALPINE_DIR) subprocess.call('docker compose up -d', shell=True) time.sleep(3) - subprocess.call('scp -P 2222 -r ../clearing-docker-compose root@localhost:/root/clr_test', shell=True) - subprocess.call('ssh root@localhost -p 2222', shell=True) + subprocess.call('scp -P 2233 -r ../clearing-docker-compose root@localhost:/root/clr_test', shell=True) + subprocess.call('ssh root@localhost -p 2233', shell=True) subprocess.call('cd clr_test', shell=True) subprocess.call('docker compose pull', shell=True) subprocess.call('docker compose build', shell=True) subprocess.call('date --set "2020-01-01 00:00:00"', shell=True) subprocess.call('docker compose up', shell=True) subprocess.call('exit', shell=True) - subprocess.call("scp -P 2222 -r root@localhost:/root/clr_test/mnt/testFiles {RESULT_FILES_DIR}", shell=True) + subprocess.call("scp -P 2233 -r root@localhost:/root/clr_test/mnt/testFiles {RESULT_FILES_DIR}", shell=True) os.remove(f"{QEMU_ALPINE_DIR}/mounted/data.qcow2") os.chdir("..")