
* Revert "work around an issue with docker/dockerhub (#10547)"
This reverts commit 0ef139ac4d
.
* Add more docker base image configurations.
- Renamed configs
- "centos" -> "centos-7"
- "fedora" -> "fedora-24"
- "opensuse" -> "opensuse-tumbleweed"
- "scilinux" -> "scilinux-7"
- "ubuntu" -> "ubuntu-1804"
- Added configs
- "centos-6"
- "fedora-29"
- "opensuse-leap"
- "scilinux-6"
- "ubuntu-1604"
With these changes, our docker hub image
collection will consist of the following:
- "spack/archlinux"
- "latest"
- "spack/centos"
- "latest", "centos7", "7"
- "centos6", "6"
- "spack/fedora"
- "latest", "29"
- "24"
- "spack/opensuse"
- "latest", "tumbleweed"
- "leap"
- "spack/scilinux"
- "latest", "7"
- "6"
- "spack/ubuntu"
- "latest", "bionic", "18.04"
- "xenial", "16.04"
17 lines
388 B
Bash
17 lines
388 B
Bash
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
unset DISTRO
|
|
unset DISTRO_VERSION
|
|
unset BASE_IMAGE
|
|
unset BASE_NAME
|
|
unset BASE_TAG
|
|
unset TAG
|
|
unset EXTRA_TAGS
|
|
|
|
export BASE_IMAGE=centos
|
|
export BASE_TAG="7"
|
|
export EXTRA_TAGS="centos7 latest"
|