docker-php/.woodpecker.yml
Simon Vieille 2beedf2866
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci(build): fix repo
2023-01-03 12:15:16 +01:00

34 lines
768 B
YAML

matrix:
PHP_VERSION:
- 7.1
- 7.3
- 7.4
- 8.0
- 8.1
pipeline:
build_gitnet:
image: plugins/docker
secrets: [registry_user, registry_password]
settings:
registry: gitnet.fr
dockerfile: ./Dockerfile.php${PHP_VERSION}
repo: gitnet.fr/${CI_REPO/docker-/}
tags: ${PHP_VERSION}
username:
from_secret: registry_user
password:
from_secret: registry_password
build_hub:
image: plugins/docker
secrets: [registry_user, registry_docker_password]
settings:
dockerfile: ./Dockerfile.php${PHP_VERSION}
repo: ${CI_REPO/docker-/}
tags: ${PHP_VERSION}
username:
from_secret: registry_user
password:
from_secret: registry_docker_password