mirror of
https://bitbucket.org/atlassian-docker/docker-atlassian-confluence-server.git
synced 2024-08-30 18:22:16 +00:00
Update README in pipelines
This commit is contained in:
parent
36d2420fad
commit
4067f473d1
32
bin/push-readme.py
Normal file
32
bin/push-readme.py
Normal file
@ -0,0 +1,32 @@
|
||||
import logging
|
||||
import os
|
||||
|
||||
import requests
|
||||
|
||||
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
||||
|
||||
DOCKER_REPO = os.environ.get('DOCKER_REPO')
|
||||
DOCKER_USERNAME = os.environ.get('DOCKER_USERNAME')
|
||||
DOCKER_PASSWORD = os.environ.get('DOCKER_PASSWORD')
|
||||
README_FILE = os.environ.get('README_FILE') or 'README.md'
|
||||
|
||||
|
||||
logging.info('Generating Docker Hub JWT')
|
||||
data = {'username': DOCKER_USERNAME, 'password': DOCKER_PASSWORD}
|
||||
r = requests.post('https://hub.docker.com/v2/users/login/', json=data)
|
||||
docker_token = r.json().get('token')
|
||||
|
||||
logging.info(f'Updating Docker Hub description for {DOCKER_REPO}')
|
||||
with open(README_FILE) as f:
|
||||
full_description = f.read()
|
||||
data = {'registry': 'registry-1.docker.io', 'full_description': full_description}
|
||||
headers = {'Authorization': f'JWT {docker_token}'}
|
||||
r = requests.patch(f'https://cloud.docker.com/v2/repositories/{DOCKER_REPO}/',
|
||||
json=data, headers=headers)
|
||||
|
||||
if r.status_code == requests.codes.ok:
|
||||
logging.info(f'Successfully updated {README_FILE} for {DOCKER_REPO}')
|
||||
else:
|
||||
logging.info(f'Unable to update {README_FILE} for {DOCKER_REPO}, response code: {r.status_code}')
|
@ -86,6 +86,13 @@ pipelines:
|
||||
- export TAG_SUFFIXES='adoptopenjdk8,jdk8,ubuntu,ubuntu-18.04-adoptopenjdk8'
|
||||
- echo ${DOCKER_PASSWORD} | docker login --username ${DOCKER_USERNAME} --password-stdin
|
||||
- python /usr/src/app/run.py --update
|
||||
- step:
|
||||
name: Update README
|
||||
image: python:3.7-alpine3.9
|
||||
script:
|
||||
- pip install -q requests
|
||||
- export DOCKER_REPO='atlassian/confluence-server'
|
||||
- python bin/push-readme.py
|
||||
pull-requests:
|
||||
'**':
|
||||
- step:
|
||||
|
Loading…
Reference in New Issue
Block a user