skip to Main Content

Php versions – How I can automatically mark a docker php image that has its version as a tag as latest?

For my custom docker php building system I have the following docker-compose version: "3.7" services: base72: build: context: . dockerfile: ./dockerfiles/7.2/Dockerfile image: myapp/php7.2:$VERSION_PHP_72 stdin_open: true tty: true develop72: build: context: . dockerfile: ./dockerfiles/7.2/Dockerfile_develop links: - base72 image: myapp/php7.2-dev:$VERSION_PHP_72 volumes: -…

VIEW QUESTION
Back To Top
Search