我有以下 docker-compose.yml 文件。当我运行它时,我收到消息“请运行 'docker pull elgalu/selenium',或通过 --seleniumImageName 使用您自己的兼容图像”。如果我拉图像,我的测试运行良好。如何在运行撰写文件时自动拉取图像,而不是手动拉取图像。感谢您的帮助
version: '3'
services:
zalenium:
image: repo.forge.lmig.com/docker/dosel/zalenium
container_name: zalenium
depends_on:
- selenium
ports:
- "4444:4444"
restart: unless-stopped
tty: true
command: ["start", "--desiredContainers", "5", "--maxDockerSeleniumContainers", "10","--sauceLabsEnabled","false","--screenWidth", "1920", "--screenHeight", "1080"]
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /Users/goutham/git/selenium-tests/test-output/videos:/home/seluser/videos
privileged: true
networks:
mynetwork:
aliases:
- chrome
selenium-tests:
image: selenium-tests:latest
container_name: selenium-tests-container
depends_on:
- zalenium
networks:
mynetwork:
volumes:
- /Users/goutham/git/selenium-tests/test-output:/test-output
networks:
mynetwork:
driver: bridge