File: README.dockerhub

package info (click to toggle)
pftools 3.2.12-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 92,208 kB
  • sloc: ansic: 17,779; fortran: 12,000; perl: 2,956; sh: 232; makefile: 29; f90: 3
file content (15 lines) | stat: -rw-r--r-- 734 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
####### Sign container in Docker hub
# See https://docs.docker.com/engine/security/trust/content_trust/
#     https://success.docker.com/article/introduction-to-docker-content-trust
#
# Enable Docker Content Trust
export DOCKER_CONTENT_TRUST=1
# Sign and Push Images with Docker Content Trust
# Log into Docker Hub with Docker 1.8+
docker login
#With Docker Content Trust enabled, push an image to Hub. When you push, Docker will note you have no keys, create them, and prompt you for a passphrase to encrypt them:
docker tag pftools:$PFTOOLS_VERSION sibswiss/pftools:$PFTOOLS_VERSION
docker -D push sibswiss/pftools:$PFTOOLS_VERSION

docker tag pftools:$PFTOOLS_VERSION sibswiss/pftools:latest
docker -D push sibswiss/pftools:latest