6952568
%global with_bundled 1
55281e9
%global with_debug 1
55281e9
17d40d4
%if 0%{?with_debug}
74c1fcd
%global _find_debuginfo_dwz_opts %{nil}
17d40d4
%global _dwz_low_mem_die_limit 0
17d40d4
%else
17d40d4
%global debug_package   %{nil}
17d40d4
%endif
17d40d4
ecbe03b
%if ! 0%{?gobuild:1}
ecbe03b
%define gobuild(o:) go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld '" -a -v -x %{?**};
ecbe03b
%endif
ecbe03b
c14385f
%global provider github
c14385f
%global provider_tld com
b5b02c2
%global project containers
c14385f
%global repo buildah
b5b02c2
# https://github.com/containers/buildah
ecbe03b
%global import_path %{provider}.%{provider_tld}/%{project}/%{repo}
ecbe03b
%global git0 https://%{import_path}
RH Container Bot 2c08a97
%global commit0 9513cb8c7bec0f7789c696aee4d252ebf85194cc
c14385f
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
17d40d4
bb9309e
# Used for comparing with latest upstream tag
bb9309e
# to decide whether to autobuild (non-rawhide only)
RH Container Bot 2c08a97
%global built_tag v1.11.6
bb9309e
c14385f
Name: %{repo}
RH Container Bot 2c08a97
Version: 1.11.6
RH Container Bot bcda9cc
Release: 2%{?dist}
c14385f
Summary: A command line tool used for creating OCI Images
c14385f
License: ASL 2.0
ecbe03b
URL: https://%{name}.io
ecbe03b
Source: %{git0}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz
c14385f
ExclusiveArch: x86_64 %{arm} aarch64 ppc64le s390x
ecbe03b
17d40d4
# If go_compiler is not set to 1, there is no virtual provide. Use golang instead.
c14385f
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
c14385f
BuildRequires: git
c14385f
BuildRequires: glib2-devel
8316a6f
BuildRequires: libseccomp-static
c14385f
BuildRequires: ostree-devel
c14385f
BuildRequires: glibc-static
c14385f
BuildRequires: go-md2man
c14385f
BuildRequires: gpgme-devel
c14385f
BuildRequires: device-mapper-devel
c14385f
BuildRequires: btrfs-progs-devel
c14385f
BuildRequires: libassuan-devel
057ff55
BuildRequires: make
c14385f
Requires: runc >= 1.0.0-17
e9feb72
Requires: containers-common
ecbe03b
%if 0%{?fedora}
fdf4328
Recommends: container-selinux
e4087dd
Recommends: slirp4netns >= 0.3-0
e4087dd
Recommends: fuse-overlayfs
ecbe03b
%else
ecbe03b
Requires: container-selinux
ecbe03b
Requires: slirp4netns >= 0.3-0
e4087dd
%endif
17d40d4
17d40d4
%description
6952568
The %{name} package provides a command line tool which can be used to
17d40d4
* create a working container from scratch
17d40d4
or
17d40d4
* create a working container from an image as a starting point
17d40d4
* mount/umount a working container's root file system for manipulation
17d40d4
* save container's root file system layer to create a new image
17d40d4
* delete a working container or an image
17d40d4
17d40d4
%prep
c14385f
%autosetup -Sgit -n %{name}-%{commit0}
ab15734
sed -i 's/GOMD2MAN =/GOMD2MAN ?=/' docs/Makefile
ab15734
sed -i '/docs install/d' Makefile
17d40d4
17d40d4
%build
17d40d4
mkdir _build
17d40d4
pushd _build
17d40d4
mkdir -p src/%{provider}.%{provider_tld}/%{project}
17d40d4
ln -s $(dirs +1 -l) src/%{import_path}
17d40d4
popd
17d40d4
17d40d4
mv vendor src
17d40d4
ecbe03b
export GOPATH=$(pwd)/_build:$(pwd)
1728f1e
export BUILDTAGS='seccomp selinux'
a14de33
export GO111MODULE=off
8316a6f
%gobuild -o %{name} %{import_path}/cmd/%{name}
ab15734
GOMD2MAN=go-md2man %{__make} -C docs
17d40d4
17d40d4
%install
17d40d4
export GOPATH=$(pwd)/_build:$(pwd):%{gopath}
17d40d4
make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
7366b77
make DESTDIR=%{buildroot} PREFIX=%{_prefix} -C docs install
17d40d4
17d40d4
#define license tag if not already defined
17d40d4
%{!?_licensedir:%global license %doc}
17d40d4
17d40d4
%files
17d40d4
%license LICENSE
17d40d4
%doc README.md
17d40d4
%{_bindir}/%{name}
6952568
%{_mandir}/man1/%{name}*
17d40d4
%dir %{_datadir}/bash-completion
17d40d4
%dir %{_datadir}/bash-completion/completions
6952568
%{_datadir}/bash-completion/completions/%{name}
17d40d4
17d40d4
%changelog
RH Container Bot 2c08a97
* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.11.6-2
RH Container Bot 2c08a97
- bump to v1.11.6
RH Container Bot 2c08a97
- autobuilt 9513cb8
RH Container Bot 2c08a97
RH Container Bot 2e144a2
* Mon Oct 28 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.11.4-2
RH Container Bot 2e144a2
- bump to v1.11.4
RH Container Bot 2e144a2
- autobuilt 21b4778
RH Container Bot 2e144a2
RH Container Bot bcda9cc
* Fri Oct 04 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.11.3-2
RH Container Bot bcda9cc
- bump to v1.11.3
RH Container Bot bcda9cc
- autobuilt bdd78ad
RH Container Bot bcda9cc
Lokesh Mandvekar (Bot) 9cee89d
* Tue Sep 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.2-2.git0bafbfe
Lokesh Mandvekar (Bot) 9cee89d
- bump to v1.11.2
Lokesh Mandvekar (Bot) 9cee89d
- autobuilt 0bafbfe
Lokesh Mandvekar (Bot) 9cee89d
Lokesh Mandvekar (Bot) 4ce6934
* Thu Sep 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.1-2.git413bd1f
Lokesh Mandvekar (Bot) 4ce6934
- bump to v1.11.1
Lokesh Mandvekar (Bot) 4ce6934
- autobuilt 413bd1f
Lokesh Mandvekar (Bot) 4ce6934
Lokesh Mandvekar (Bot) 9947843
* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-2.git2c5da1b
Lokesh Mandvekar (Bot) 9947843
- bump to v1.11.0
Lokesh Mandvekar (Bot) 9947843
- autobuilt 2c5da1b
Lokesh Mandvekar (Bot) 9947843
Lokesh Mandvekar (Bot) a917e05
* Thu Aug 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.10.1-2.git8c1c2c5
Lokesh Mandvekar (Bot) a917e05
- bump to v1.10.1
Lokesh Mandvekar (Bot) a917e05
- autobuilt 8c1c2c5
Lokesh Mandvekar (Bot) a917e05
Lokesh Mandvekar (Bot) ae7fdfc
* Fri Aug 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.10.0-2.git5a3e9fb
Lokesh Mandvekar (Bot) ae7fdfc
- bump to v1.10.0
Lokesh Mandvekar (Bot) ae7fdfc
- autobuilt 5a3e9fb
Lokesh Mandvekar (Bot) ae7fdfc
432098d
* Wed Jul 24 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.2-2
432098d
- use correct commit d2a3249
432098d
Lokesh Mandvekar (Bot) 7396c2f
* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-1
Lokesh Mandvekar (Bot) 7396c2f
- bump to 1.9.2
Lokesh Mandvekar (Bot) 7396c2f
- autobuilt 2110f05
Lokesh Mandvekar (Bot) 7396c2f
a14de33
* Mon Jul 15 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-3
a14de33
- GO111MODULE=off
a14de33
- update release tag
a14de33
Lokesh Mandvekar (Bot) 9c26b7b
* Mon Jul 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-2.gite5e0547
Lokesh Mandvekar (Bot) 9c26b7b
- bump to 1.9.1
Lokesh Mandvekar (Bot) 9c26b7b
- autobuilt e5e0547
Lokesh Mandvekar (Bot) 9c26b7b
f510f20
* Sat Jun 15 2019 Dan Walsh <dwalsh@redhat.com> - 1.9.0-1.git00eb89
f510f20
- Bump to v1.9.0 Release
f510f20
ecbe03b
* Fri Jun 14 2019 Dan Walsh <dwalsh@redhat.com> - 1.8.4-1.gitaf8fd4
ecbe03b
- bump to v1.8.4 Release
ecbe03b
6974229
* Fri May 10 2019 Dan Walsh <dwalsh@redhat.com> - 1.8.2-1.gite23314
6974229
- bump to v1.8.2 Release
6974229
b4f2663
* Fri Apr 26 2019 Dan Walsh <dwalsh@redhat.com> - 1.8.0-1.git4aa16c
b4f2663
- bump to v1.8.0 Release
b4f2663
b4f2663
* Thu Apr 25 2019 Nalin Dahyabhai <nalin@redhat.com> - 1.7-18.git873f0014
b4f2663
- Rebuild with a larger release number to unbreak upgrades from 1.7 prereleases
b4f2663
1728f1e
* Thu Mar 21 2019 Dan Walsh <dwalsh@redhat.com> - 1.7-3.git873f0014
b4f2663
- Compile with SELinux enabled
1728f1e
e4087dd
* Wed Mar 06 2019 Dan Walsh <dwalsh@redhat.com> - 1.7-2.git873f0014
e4087dd
- Add recommends for fuse-overlay and slirp4netns
e4087dd
e4087dd
* Thu Feb 21 2019 Dan Walsh <dwalsh@redhat.com> - 1.7-1.git873f0014
ac4c3a9
- bump to v1.7 Release
ac4c3a9
d48132b
* Wed Jan 16 2019 Dan Walsh <dwalsh@redhat.com> - 1.6-2.git5f95bd9a
d48132b
- Fixes for v1.6 release
d48132b
d48132b
* Wed Jan 16 2019 Dan Walsh <dwalsh@redhat.com> - 1.6-1.git3ec6a6bd
df0b318
- bump to v1.6 Release
df0b318
dc9b18a
* Thu Nov 22 2018 Dan Walsh <dwalsh@redhat.com> - 1.5-1.gite94b4f98
dc9b18a
- bump to v1.5 Release
dc9b18a
baeccb9
* Thu Oct 4 2018 Dan Walsh <dwalsh@redhat.com> - 1.4-3.git608fa84
baeccb9
- Fix v1.4 Release
baeccb9
b5b02c2
* Tue Oct 2 2018 Dan Walsh <dwalsh@redhat.com> - 1.4-2.git87239ae
b5b02c2
- bump to v1.4 Release
b5b02c2
8316a6f
* Sun Aug 12 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.4-1.dev.git0a7389c
8316a6f
- bump to v1.4-dev
8316a6f
- built 0a7389c
8316a6f
Lokesh Mandvekar (Bot) b575d5d
* Wed Aug 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-11.dev.git02f54e4
Lokesh Mandvekar (Bot) b575d5d
- autobuilt 02f54e4
Lokesh Mandvekar (Bot) b575d5d
9842359
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 1.3-10.dev.gitbe03809
9842359
- Rebuild with fixed binutils
9842359
Lokesh Mandvekar (Bot) a44126c
* Sun Jul 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-9.dev.gitbe03809
Lokesh Mandvekar (Bot) a44126c
- autobuilt be03809
Lokesh Mandvekar (Bot) a44126c
Lokesh Mandvekar (Bot) e040e16
* Sat Jul 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-8.dev.gitc18724e
Lokesh Mandvekar (Bot) e040e16
- autobuilt c18724e
Lokesh Mandvekar (Bot) e040e16
Lokesh Mandvekar (Bot) 6ac685c
* Thu Jul 26 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-7.dev.git4976d8c
Lokesh Mandvekar (Bot) 6ac685c
- autobuilt 4976d8c
Lokesh Mandvekar (Bot) 6ac685c
Lokesh Mandvekar (Bot) 4fcce60
* Wed Jul 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-6.dev.gite5f7539
Lokesh Mandvekar (Bot) 4fcce60
- autobuilt e5f7539
Lokesh Mandvekar (Bot) 4fcce60
fdf4328
* Mon Jul 23 2018 Dan Walsh <dwalsh@redhat.com> - 1.3-5.dev.dev.git826733a
fdf4328
- Change container-selinux Requires to Recommends
fdf4328
Lokesh Mandvekar (Bot) 23c226e
* Fri Jul 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-4.dev.git826733a
Lokesh Mandvekar (Bot) 23c226e
- autobuilt 826733a
Lokesh Mandvekar (Bot) 23c226e
951d8ec
* Thu Jul 19 2018 Dan Walsh <dwalsh@redhat.com> - 1.3-3.dev.git1215b16
951d8ec
- buildah does not require ostree
951d8ec
Lokesh Mandvekar (Bot) b13bbdd
* Thu Jul 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-2.dev.git1215b16
Lokesh Mandvekar (Bot) b13bbdd
- autobuilt 1215b16
Lokesh Mandvekar (Bot) b13bbdd
6251e95
* Tue Jul 17 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.3-1.dev.gita9895bd
6251e95
- bump to v1.3-dev
6251e95
- built a9895bd
6251e95
ede4df9
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-25.dev.git3fb864b
ede4df9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
ede4df9
Lokesh Mandvekar (Bot) 8f66fb2
* Mon Jul 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-24.git3fb864b
Lokesh Mandvekar (Bot) 8f66fb2
- autobuilt 3fb864b
Lokesh Mandvekar (Bot) 8f66fb2
Lokesh Mandvekar (Bot) 4090ddf
* Sun Jul 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-23.git8be2b62
Lokesh Mandvekar (Bot) 4090ddf
- autobuilt 8be2b62
Lokesh Mandvekar (Bot) 4090ddf
Lokesh Mandvekar (Bot) 898f9d2
* Sat Jul 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-22.gita885bc6
Lokesh Mandvekar (Bot) 898f9d2
- autobuilt a885bc6
Lokesh Mandvekar (Bot) 898f9d2
Lokesh Mandvekar (Bot) 2e16ba2
* Fri Jul 06 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-21.git733cd20
Lokesh Mandvekar (Bot) 2e16ba2
- autobuilt 733cd20
Lokesh Mandvekar (Bot) 2e16ba2
Lokesh Mandvekar (Bot) 727e325
* Thu Jul 05 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-20.gita59fb7a
Lokesh Mandvekar (Bot) 727e325
- autobuilt a59fb7a
Lokesh Mandvekar (Bot) 727e325
Lokesh Mandvekar (Bot) 3bac9a9
* Tue Jul 03 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-19.git5c11c34
Lokesh Mandvekar (Bot) 3bac9a9
- autobuilt 5c11c34
Lokesh Mandvekar (Bot) 3bac9a9
Lokesh Mandvekar (Bot) 66af493
* Mon Jul 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-18.git5cd9be6
Lokesh Mandvekar (Bot) 66af493
- autobuilt 5cd9be6
Lokesh Mandvekar (Bot) 66af493
Lokesh Mandvekar (Bot) 0d4ae90
* Sun Jul 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-17.git6f72599
Lokesh Mandvekar (Bot) 0d4ae90
- autobuilt 6f72599
Lokesh Mandvekar (Bot) 0d4ae90
Lokesh Mandvekar (Bot) f566bfb
* Sat Jun 30 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-16.git704adec
Lokesh Mandvekar (Bot) f566bfb
- autobuilt 704adec
Lokesh Mandvekar (Bot) f566bfb
Lokesh Mandvekar (Bot) 75a7ed5
* Fri Jun 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-15.gitb965fc4
Lokesh Mandvekar (Bot) 75a7ed5
- autobuilt b965fc4
Lokesh Mandvekar (Bot) 75a7ed5
Lokesh Mandvekar (Bot) 1ddff90
* Thu Jun 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-14.git1acccce
Lokesh Mandvekar (Bot) 1ddff90
- autobuilt 1acccce
Lokesh Mandvekar (Bot) 1ddff90
Lokesh Mandvekar (Bot) 2e78f3b
* Wed Jun 27 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-13.git146c185
Lokesh Mandvekar (Bot) 2e78f3b
- autobuilt 146c185
Lokesh Mandvekar (Bot) 2e78f3b
Lokesh Mandvekar (Bot) e84255d
* Tue Jun 26 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-12.git16a33bd
Lokesh Mandvekar (Bot) e84255d
- autobuilt 16a33bd
Lokesh Mandvekar (Bot) e84255d
Lokesh Mandvekar (Bot) 9de27c9
* Mon Jun 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-11.git2ac95ea
Lokesh Mandvekar (Bot) 9de27c9
- autobuilt 2ac95ea
Lokesh Mandvekar (Bot) 9de27c9
Lokesh Mandvekar (Bot) 3a2d8da
* Sat Jun 23 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-10.git0143a44
Lokesh Mandvekar (Bot) 3a2d8da
- autobuilt 0143a44
Lokesh Mandvekar (Bot) 3a2d8da
Lokesh Mandvekar (Bot) 83ec27b
* Thu Jun 21 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-9.git2441ff4
Lokesh Mandvekar (Bot) 83ec27b
- autobuilt 2441ff4
Lokesh Mandvekar (Bot) 83ec27b
Lokesh Mandvekar (Bot) 0081bc0
* Wed Jun 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-8.gitda7be32
Lokesh Mandvekar (Bot) 0081bc0
- autobuilt da7be32
Lokesh Mandvekar (Bot) 0081bc0
Lokesh Mandvekar (Bot) 97cc557
* Tue Jun 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-7.git2064b29
Lokesh Mandvekar (Bot) 97cc557
- autobuilt 2064b29
Lokesh Mandvekar (Bot) 97cc557
Lokesh Mandvekar (Bot) 6e011cb
* Mon Jun 18 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-6.git93d8606
Lokesh Mandvekar (Bot) 6e011cb
- autobuilt 93d8606
Lokesh Mandvekar (Bot) 6e011cb
Lokesh Mandvekar (Bot) 8537ee9
* Fri Jun 15 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-5.gitfc438bb
Lokesh Mandvekar (Bot) 8537ee9
- autobuilt fc438bb
Lokesh Mandvekar (Bot) 8537ee9
Lokesh Mandvekar (Bot) 5354b27
* Thu Jun 14 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-4.git73820fc
Lokesh Mandvekar (Bot) 5354b27
- autobuilt 73820fc
Lokesh Mandvekar (Bot) 5354b27
Lokesh Mandvekar (Bot) 40f9ff0
* Wed Jun 13 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-3.git6c4bef7
Lokesh Mandvekar (Bot) 40f9ff0
- autobuilt 6c4bef7
Lokesh Mandvekar (Bot) 40f9ff0
Lokesh Mandvekar (Bot) 58dbc41
* Tue Jun 12 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-2.git94c1e6d
Lokesh Mandvekar (Bot) 58dbc41
- autobuilt 94c1e6d
Lokesh Mandvekar (Bot) 58dbc41
Lokesh Mandvekar (Bot) d675e0a
* Mon Jun 11 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-1.gitb9983a6
Lokesh Mandvekar (Bot) d675e0a
- bump to 1.2
Lokesh Mandvekar (Bot) d675e0a
- autobuilt b9983a6
Lokesh Mandvekar (Bot) d675e0a
e9376be
* Sun Jun 10 2018 Dan Walsh <dwalsh@redhat.com> 1.1-1
e9376be
- Drop capabilities if running container processes as non root
e9376be
- Print Warning message if cmd will not be used based on entrypoint
e9376be
- Update 01-intro.md
e9376be
- Shouldn't add insecure registries to list of search registries
e9376be
- Report errors on bad transports specification when pushing images
e9376be
- Move parsing code out of common for namespaces and into pkg/parse.go
e9376be
- Add disable-content-trust noop flag to bud
e9376be
- Change freenode chan to buildah
e9376be
- runCopyStdio(): don't close stdin unless we saw POLLHUP
e9376be
- Add registry errors for pull
e9376be
- runCollectOutput(): just read until the pipes are closed on us
e9376be
- Run(): provide redirection for stdio
e9376be
- rmi, rm: add test
e9376be
- add mount test
e9376be
- Add parameter judgment for commands that do not require parameters
e9376be
- Add context dir to bud command in baseline test
e9376be
- run.bats: check that we can run with symlinks in the bundle path
e9376be
- Give better messages to users when image can not be found
e9376be
- use absolute path for bundlePath
e9376be
- Add environment variable to buildah --format
e9376be
- rm: add validation to args and all option
e9376be
- Accept json array input for config entrypoint
e9376be
- Run(): process RunOptions.Mounts, and its flags
e9376be
- Run(): only collect error output from stdio pipes if we created some
e9376be
- Add OnBuild support for Dockerfiles
e9376be
- Quick fix on demo readme
e9376be
- run: fix validate flags
e9376be
- buildah bud should require a context directory or URL
e9376be
- Touchup tutorial for run changes
e9376be
- Validate common bud and from flags
e9376be
- images: Error if the specified imagename does not exist
e9376be
- inspect: Increase err judgments to avoid panic
e9376be
- add test to inspect
e9376be
- buildah bud picks up ENV from base image
e9376be
- Extend the amount of time travis_wait should wait
e9376be
- Add a make target for Installing CNI plugins
e9376be
- Add tests for namespace control flags
e9376be
- copy.bats: check ownerships in the container
e9376be
- Fix SELinux test errors when SELinux is enabled
e9376be
- Add example CNI configurations
e9376be
- Run: set supplemental group IDs
e9376be
- Run: use a temporary mount namespace
e9376be
- Use CNI to configure container networks
e9376be
- add/secrets/commit: Use mappings when setting permissions on added content
e9376be
- Add CLI options for specifying namespace and cgroup setup
e9376be
- Always set mappings when using user namespaces
e9376be
- Run(): break out creation of stdio pipe descriptors
e9376be
- Read UID/GID mapping information from containers and images
e9376be
- Additional bud CI tests
e9376be
- Run integration tests under travis_wait in Travis
e9376be
- build-using-dockerfile: add --annotation
e9376be
- Implement --squash for build-using-dockerfile and commit
e9376be
- Vendor in latest container/storage for devicemapper support
e9376be
- add test to inspect
e9376be
- Vendor github.com/onsi/ginkgo and github.com/onsi/gomega
e9376be
- Test with Go 1.10, too
e9376be
- Add console syntax highlighting to troubleshooting page
e9376be
- bud.bats: print "$output" before checking its contents
e9376be
- Manage "Run" containers more closely
e9376be
- Break Builder.Run()'s "run runc" bits out
e9376be
- util.ResolveName(): handle completion for tagged/digested image names
e9376be
- Handle /etc/hosts and /etc/resolv.conf properly in container
e9376be
- Documentation fixes
e9376be
- Make it easier to parse our temporary directory as an image name
e9376be
- Makefile: list new pkg/ subdirectoris as dependencies for buildah
e9376be
- containerImageSource: return more-correct errors
e9376be
- API cleanup: PullPolicy and TerminalPolicy should be types
e9376be
- Make "run --terminal" and "run -t" aliases for "run --tty"
e9376be
- Vendor github.com/containernetworking/cni v0.6.0
e9376be
- Update github.com/containers/storage
e9376be
- Update github.com/projectatomic/libpod
e9376be
- Add support for buildah bud --label
e9376be
- buildah push/from can push and pull images with no reference
e9376be
- Vendor in latest containers/image
e9376be
- Update gometalinter to fix install.tools error
e9376be
- Update troubleshooting with new run workaround
e9376be
- Added a bud demo and tidied up
e9376be
- Attempt to download file from url, if fails assume Dockerfile
e9376be
- Add buildah bud CI tests for ENV variables
e9376be
- Re-enable rpm .spec version check and new commit test
e9376be
- Update buildah scratch demo to support el7
e9376be
- Added Docker compatibility demo
e9376be
- Update to F28 and new run format in baseline test
e9376be
- Touchup man page short options across man pages
e9376be
- Added demo dir and a demo. chged distrorlease
e9376be
- builder-inspect: fix format option
e9376be
- Add cpu-shares short flag (-c) and cpu-shares CI tests
e9376be
- Minor fixes to formatting in rpm spec changelog
e9376be
- Fix rpm .spec changelog formatting
e9376be
- CI tests and minor fix for cache related noop flags
e9376be
- buildah-from: add effective value to mount propagation
e9376be
Lokesh Mandvekar (Bot) 088a5c2
* Sat Jun 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-20.gitf449b28
Lokesh Mandvekar (Bot) 088a5c2
- autobuilt f449b28
Lokesh Mandvekar (Bot) 088a5c2
Lokesh Mandvekar (Bot) 1e05b25
* Fri Jun 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-19.gitc306342
Lokesh Mandvekar (Bot) 1e05b25
- autobuilt c306342
Lokesh Mandvekar (Bot) 1e05b25
Lokesh Mandvekar (Bot) 7873757
* Wed Jun 06 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-18.gitd3d097b
Lokesh Mandvekar (Bot) 7873757
- autobuilt d3d097b
Lokesh Mandvekar (Bot) 7873757
Lokesh Mandvekar (Bot) 72e6aee
* Mon Jun 04 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-17.gitf90b6c0
Lokesh Mandvekar (Bot) 72e6aee
- autobuilt f90b6c0
Lokesh Mandvekar (Bot) 72e6aee
Lokesh Mandvekar (Bot) e4a0f63
* Sun Jun 03 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-16.git70641ee
Lokesh Mandvekar (Bot) e4a0f63
- autobuilt 70641ee
Lokesh Mandvekar (Bot) e4a0f63
Lokesh Mandvekar (Bot) 9a95d85
* Sat Jun 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-15.git03686e5
Lokesh Mandvekar (Bot) 9a95d85
- autobuilt 03686e5
Lokesh Mandvekar (Bot) 9a95d85
Lokesh Mandvekar (Bot) 233e869
* Fri Jun 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-14.git73bfd79
Lokesh Mandvekar (Bot) 233e869
- autobuilt 73bfd79
Lokesh Mandvekar (Bot) 233e869
Lokesh Mandvekar (Bot) 120eed3
* Thu May 31 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-13.git5595d4d
Lokesh Mandvekar (Bot) 120eed3
- autobuilt 5595d4d
Lokesh Mandvekar (Bot) 120eed3
Lokesh Mandvekar (Bot) 25e9104
* Wed May 30 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-12.gitebb0d8e
Lokesh Mandvekar (Bot) 25e9104
- autobuilt ebb0d8e
Lokesh Mandvekar (Bot) 25e9104
Lokesh Mandvekar (Bot) 2cf51bc
* Tue May 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-11.git88affbd
Lokesh Mandvekar (Bot) 2cf51bc
- autobuilt 88affbd
Lokesh Mandvekar (Bot) 2cf51bc
Lokesh Mandvekar (Bot) 25050ea
* Fri May 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-10.git25f4e8e
Lokesh Mandvekar (Bot) 25050ea
- autobuilt 25f4e8e
Lokesh Mandvekar (Bot) 25050ea
Lokesh Mandvekar (Bot) 3b2d8db
* Thu May 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-9.git2749191
Lokesh Mandvekar (Bot) 3b2d8db
- autobuilt 2749191
Lokesh Mandvekar (Bot) 3b2d8db
Lokesh Mandvekar (Bot) 950b6da
* Wed May 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-8.git3e320b9
Lokesh Mandvekar (Bot) 950b6da
- autobuilt 3e320b9
Lokesh Mandvekar (Bot) 950b6da
Lokesh Mandvekar (Bot) d5c556e
* Tue May 15 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-7.git8515867
Lokesh Mandvekar (Bot) d5c556e
- autobuilt 8515867
Lokesh Mandvekar (Bot) d5c556e
Lokesh Mandvekar (Bot) 40e971d
* Sun May 13 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-6.gitce8d467
Lokesh Mandvekar (Bot) 40e971d
- autobuilt ce8d467
Lokesh Mandvekar (Bot) 40e971d
Lokesh Mandvekar (Bot) b890924
* Sat May 12 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-5.gitb9a1041
Lokesh Mandvekar (Bot) b890924
- autobuilt b9a1041
Lokesh Mandvekar (Bot) b890924
Lokesh Mandvekar (Bot) c3dc1a3
* Fri May 11 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-4.git2ea3e11
Lokesh Mandvekar (Bot) c3dc1a3
- autobuilt 2ea3e11
Lokesh Mandvekar (Bot) c3dc1a3
Lokesh Mandvekar (Bot) 1c98b4e
* Wed May 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-3.gitfe204e4
Lokesh Mandvekar (Bot) 1c98b4e
- autobuilt fe204e4
Lokesh Mandvekar (Bot) 1c98b4e
Lokesh Mandvekar (Bot) f3bf229
* Tue May 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-2.git906ee37
Lokesh Mandvekar (Bot) f3bf229
- autobuilt 906ee37
Lokesh Mandvekar (Bot) f3bf229
dec3b4f
* Mon May 07 2018 Dan Walsh <dwalsh@redhat.com> 1.0-1
dec3b4f
- Remove buildah run cmd and entrypoint execution
dec3b4f
- Add Files section with registries.conf to pertinent man pages
dec3b4f
- Force "localhost" as a default registry
dec3b4f
- Add --compress, --rm, --squash flags as a noop for bud
dec3b4f
- Add FIPS mode secret to buildah run and bud
dec3b4f
- Add config --comment/--domainname/--history-comment/--hostname
dec3b4f
- Add support for --iidfile to bud and commit
dec3b4f
- Add /bin/sh -c to entrypoint in config
dec3b4f
- buildah images and podman images are listing different sizes
dec3b4f
- Remove tarball as an option from buildah push --help
dec3b4f
- Update entrypoint behaviour to match docker
dec3b4f
- Display imageId after commit
dec3b4f
- config: add support for StopSignal
dec3b4f
- Allow referencing stages as index and names
dec3b4f
- Add multi-stage builds support
dec3b4f
- Vendor in latest imagebuilder, to get mixed case AS support
dec3b4f
- Allow umount to have multi-containers
dec3b4f
- Update buildah push doc
dec3b4f
- buildah bud walks symlinks
dec3b4f
- Imagename is required for commit atm, update manpage
dec3b4f
Lokesh Mandvekar (Bot) 3eaeb32
* Mon May 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-25.gitdd02e70
Lokesh Mandvekar (Bot) 3eaeb32
- autobuilt dd02e70
Lokesh Mandvekar (Bot) 3eaeb32
Lokesh Mandvekar (Bot) 6d1cb6a
* Sat May 05 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-24.git45772e8
Lokesh Mandvekar (Bot) 6d1cb6a
- autobuilt 45772e8
Lokesh Mandvekar (Bot) 6d1cb6a
Lokesh Mandvekar (Bot) e7216f7
* Fri May 04 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-23.git6fe2b55
Lokesh Mandvekar (Bot) e7216f7
- autobuilt 6fe2b55
Lokesh Mandvekar (Bot) e7216f7
Lokesh Mandvekar (Bot) 26cbfe2
* Wed May 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-22.gita4f5707
Lokesh Mandvekar (Bot) 26cbfe2
- autobuilt a4f5707
Lokesh Mandvekar (Bot) 26cbfe2
Lokesh Mandvekar (Bot) a588835
* Wed May 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-21.gite130f2b
Lokesh Mandvekar (Bot) a588835
- autobuilt commit e130f2b
Lokesh Mandvekar (Bot) a588835
Lokesh Mandvekar (Bot) 3238581
* Tue May 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-20.gitadb8e6f
Lokesh Mandvekar (Bot) 3238581
- autobuilt commit adb8e6f
Lokesh Mandvekar (Bot) 3238581
Lokesh Mandvekar (Bot) 3b541a6
* Sat Apr 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-19.gitc50c287
Lokesh Mandvekar (Bot) 3b541a6
- autobuilt commit c50c287
Lokesh Mandvekar (Bot) 3b541a6
Lokesh Mandvekar (Bot) f583b92
* Fri Apr 27 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-18.gitca1704f
Lokesh Mandvekar (Bot) f583b92
- autobuilt commit ca1704f
Lokesh Mandvekar (Bot) f583b92
Lokesh Mandvekar (Bot) 48a0c68
* Wed Apr 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-17.git49abf82
Lokesh Mandvekar (Bot) 48a0c68
- autobuilt commit 49abf82
Lokesh Mandvekar (Bot) 48a0c68
Lokesh Mandvekar (Bot) f89e4f9
* Tue Apr 24 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-16.gitfdc3998
Lokesh Mandvekar (Bot) f89e4f9
- autobuilt commit fdc3998
Lokesh Mandvekar (Bot) f89e4f9
Lokesh Mandvekar (Bot) d53577b
* Tue Apr 24 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-15.gitb16a1ea
Lokesh Mandvekar (Bot) d53577b
- autobuilt commit b16a1ea
Lokesh Mandvekar (Bot) d53577b
Lokesh Mandvekar (Bot) 885e1b2
* Fri Apr 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-14.gitd84f05a
Lokesh Mandvekar (Bot) 885e1b2
- autobuilt commit d84f05a
Lokesh Mandvekar (Bot) 885e1b2
Lokesh Mandvekar (Bot) b63cc76
* Thu Apr 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-13.gite008b73
Lokesh Mandvekar (Bot) b63cc76
- autobuilt commit e008b73
Lokesh Mandvekar (Bot) b63cc76
Lokesh Mandvekar (Bot) 5695f6b
* Thu Apr 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-12.git28a27a3
Lokesh Mandvekar (Bot) 5695f6b
- autobuilt commit 28a27a3
Lokesh Mandvekar (Bot) 5695f6b
Lokesh Mandvekar (Bot) 4770dbb
* Tue Apr 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-11.git45a4b81
Lokesh Mandvekar (Bot) 4770dbb
- autobuilt commit 45a4b81
Lokesh Mandvekar (Bot) 4770dbb
Lokesh Mandvekar (Bot) 63b05c7
* Tue Apr 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-10.git45a4b81
Lokesh Mandvekar (Bot) 63b05c7
- autobuilt commit 45a4b81
Lokesh Mandvekar (Bot) 63b05c7
Lokesh Mandvekar (Bot) bde88e3
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-9.git6421399
Lokesh Mandvekar (Bot) bde88e3
- autobuilt commit 6421399
Lokesh Mandvekar (Bot) bde88e3
Lokesh Mandvekar (Bot) 0e135eb
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-8.git83d7d10
Lokesh Mandvekar (Bot) 0e135eb
- autobuilt commit 83d7d10
Lokesh Mandvekar (Bot) 0e135eb
Lokesh Mandvekar (Bot) 8235da6
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-7.git83d7d10
Lokesh Mandvekar (Bot) 8235da6
- autobuilt commit 83d7d10
Lokesh Mandvekar (Bot) 8235da6
Lokesh Mandvekar (Bot) 0d45aea
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-6.git83d7d10
Lokesh Mandvekar (Bot) 0d45aea
- autobuilt commit 83d7d10
Lokesh Mandvekar (Bot) 0d45aea
Lokesh Mandvekar (Bot) 428e3b8
* Mon Apr 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-5.git4339223
Lokesh Mandvekar (Bot) 428e3b8
- autobuilt commit 4339223
Lokesh Mandvekar (Bot) 428e3b8
Lokesh Mandvekar (Bot) d5812cd
* Mon Apr 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-4.git4339223
Lokesh Mandvekar (Bot) d5812cd
- autobuilt commit 4339223
Lokesh Mandvekar (Bot) d5812cd
46a0f63
* Mon Apr 09 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.16-3.git4339223
46a0f63
- autobuilt commit 4339223
46a0f63
d2a10b7
* Sun Apr 08 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.16-2.git4743c2e
d2a10b7
- autobuilt commit 4743c2e
d2a10b7
78230e6
* Wed Apr 4 2018 Dan Walsh <dwalsh@redhat.com> 0.16-1
ecbe03b
- Add support for shell
ecbe03b
- Vendor in latest containers/image
ecbe03b
- docker-archive generates docker legacy compatible images
ecbe03b
- Do not create $DiffID subdirectories for layers with no configs
ecbe03b
- Ensure the layer IDs in legacy docker/tarfile metadata are unique
ecbe03b
- docker-archive: repeated layers are symlinked in the tar file
ecbe03b
- sysregistries: remove all trailing slashes
ecbe03b
- Improve docker/* error messages
ecbe03b
- Fix failure to make auth directory
ecbe03b
- Create a new slice in Schema1.UpdateLayerInfos
ecbe03b
- Drop unused storageImageDestination.{image,systemContext}
ecbe03b
- Load a *storage.Image only once in storageImageSource
ecbe03b
- Support gzip for docker-archive files
ecbe03b
- Remove .tar extension from blob and config file names
ecbe03b
- ostree, src: support copy of compressed layers
ecbe03b
- ostree: re-pull layer if it misses uncompressed_digest|uncompressed_size
ecbe03b
- image: fix docker schema v1 -> OCI conversion
ecbe03b
- Add /etc/containers/certs.d as default certs directory
ecbe03b
- Change image time to locale, add troubleshooting.md, add logo to other mds
ecbe03b
- Allow --cmd parameter to have commands as values
ecbe03b
- Document the mounts.conf file
ecbe03b
- Fix man pages to format correctly
ecbe03b
- buildah from now supports pulling images using the following transports:
ecbe03b
- docker-archive, oci-archive, and dir.
ecbe03b
- If the user overrides the storage driver, the options should be dropped
ecbe03b
- Show Config/Manifest as JSON string in inspect when format is not set
ecbe03b
- Adds feature to pull compressed docker-archive files
78230e6
735cd52
* Tue Feb 27 2018 Dan Walsh <dwalsh@redhat.com> 0.15-1
735cd52
- Fix handling of buildah run command options
735cd52
735cd52
* Mon Feb 26 2018 Dan Walsh <dwalsh@redhat.com> 0.14-1
735cd52
- If commonOpts do not exist, we should return rather then segfault
735cd52
- Display full error string instead of just status
735cd52
- Implement --volume and --shm-size for bud and from
735cd52
- Fix secrets patch for buildah bud
735cd52
- Fixes the naming issue of blobs and config for the dir transport by removing the .tar extension
735cd52
157846a
* Sun Feb 25 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.13-2
157846a
- Build on ARMv7 too (Fedora supports containers on that arch too)
157846a
3602a57
* Thu Feb 22 2018 Dan Walsh <dwalsh@redhat.com> 0.13-1
3602a57
- Vendor in latest containers/storage
ecbe03b
- This fixes a large SELinux bug.  
3602a57
- run: do not open /etc/hosts if not needed
3602a57
- Add the following flags to buildah bud and from
3602a57
            --add-host
3602a57
            --cgroup-parent
3602a57
            --cpu-period
3602a57
            --cpu-quota
3602a57
            --cpu-shares
3602a57
            --cpuset-cpus
3602a57
            --cpuset-mems
3602a57
            --memory
3602a57
            --memory-swap
3602a57
            --security-opt
3602a57
            --ulimit
3602a57
adad6b5
* Mon Feb 12 2018 Dan Walsh <dwalsh@redhat.com> 0.12-1
adad6b5
- Added handing for simpler error message for Unknown Dockerfile instructions.
adad6b5
- Change default certs directory to /etc/containers/certs.dir
adad6b5
- Vendor in latest containers/image
adad6b5
- Vendor in latest containers/storage
adad6b5
- build-using-dockerfile: set the 'author' field for MAINTAINER
adad6b5
- Return exit code 1 when buildah-rmi fails
adad6b5
- Trim the image reference to just its name before calling getImageName
adad6b5
- Touch up rmi -f usage statement
adad6b5
- Add --format and --filter to buildah containers
adad6b5
- Add --prune,-p option to rmi command
adad6b5
- Add authfile param to commit
adad6b5
- Fix --runtime-flag for buildah run and bud
adad6b5
- format should override quiet for images
adad6b5
- Allow all auth params to work with bud
adad6b5
- Do not overwrite directory permissions on --chown
adad6b5
- Unescape HTML characters output into the terminal
adad6b5
- Fix: setting the container name to the image
adad6b5
- Prompt for un/pwd if not supplied with --creds
adad6b5
- Make bud be really quiet
adad6b5
- Return a better error message when failed to resolve an image
adad6b5
- Update auth tests and fix bud man page
adad6b5
78c2996
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11-3.git6bad262
78c2996
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
78c2996
6952568
* Mon Feb 05 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.11-2
6952568
- Resolves: upstream gh#432
6952568
- enable debuginfo for non-fedora packages
6952568
b1da7ad
* Tue Jan 16 2018 Dan Walsh <dwalsh@redhat.com> 0.11-1
b1da7ad
- Add --all to remove containers
b1da7ad
- Add --all functionality to rmi
b1da7ad
- Show ctrid when doing rm -all
b1da7ad
- Ignore sequential duplicate layers when reading v2s1
b1da7ad
- Lots of minor bug fixes
b1da7ad
- Vendor in latest containers/image and containers/storage
b1da7ad
4c02e20
* Tue Dec 26 2017 Dan Walsh <dwalsh@redhat.com> 0.10-2
4c02e20
- Fix checkin
4c02e20
fa659c3
* Sat Dec 23 2017 Dan Walsh <dwalsh@redhat.com> 0.10-1
fa659c3
- Display Config and Manifest as strings
fa659c3
- Bump containers/image
fa659c3
- Use configured registries to resolve image names
fa659c3
- Update to work with newer image library
fa659c3
- Add --chown option to add/copy commands
fa659c3
9d94396
* Sat Dec 2 2017 Dan Walsh <dwalsh@redhat.com> 0.9-1
9d94396
- Allow push to use the image id
9d94396
- Make sure builtin volumes have the correct label
9d94396
fa6abe1
* Thu Nov 16 2017 Dan Walsh <dwalsh@redhat.com> 0.8-1
fa6abe1
- Buildah bud was failing on SELinux machines, this fixes this
fa6abe1
- Block access to certain kernel file systems inside of the container
fa6abe1
d14dafe
* Thu Nov 16 2017 Dan Walsh <dwalsh@redhat.com> 0.7-1
d14dafe
- Ignore errors when trying to read containers buildah.json for loading SELinux reservations
ecbe03b
- Use credentials from kpod login for buildah
d14dafe
7d3f1f0
* Wed Nov 15 2017 Dan Walsh <dwalsh@redhat.com> 0.6-1
7d3f1f0
- Adds support for converting manifest types when using the dir transport
7d3f1f0
- Rework how we do UID resolution in images
7d3f1f0
- Bump github.com/vbatts/tar-split
7d3f1f0
- Set option.terminal appropriately in run
7d3f1f0
404eab2
* Wed Nov 08 2017 Dan Walsh <dwalsh@redhat.com> 0.5-2
ecbe03b
- Bump github.com/vbatts/tar-split
ecbe03b
- Fixes CVE That could allow a container image to cause a DOS
404eab2
33387dc
* Tue Nov 07 2017 Dan Walsh <dwalsh@redhat.com> 0.5-1
ecbe03b
- Add secrets patch to buildah
ecbe03b
- Add proper SELinux labeling to buildah run
ecbe03b
- Add tls-verify to bud command
ecbe03b
- Make filtering by date use the image's date
ecbe03b
- images: don't list unnamed images twice
ecbe03b
- Fix timeout issue
ecbe03b
- Add further tty verbiage to buildah run
ecbe03b
- Make inspect try an image on failure if type not specified
ecbe03b
- Add support for `buildah run --hostname`
ecbe03b
- Tons of bug fixes and code cleanup
33387dc
dd55030
* Fri Sep 22 2017 Dan Walsh <dwalsh@redhat.com> 0.4-1.git9cbccf88c
ecbe03b
- Add default transport to push if not provided
ecbe03b
- Avoid trying to print a nil ImageReference
ecbe03b
- Add authentication to commit and push
ecbe03b
- Add information on buildah from man page on transports
ecbe03b
- Remove --transport flag
ecbe03b
- Run: do not complain about missing volume locations
ecbe03b
- Add credentials to buildah from
ecbe03b
- Remove export command
ecbe03b
- Run(): create the right working directory
ecbe03b
- Improve "from" behavior with unnamed references
ecbe03b
- Avoid parsing image metadata for dates and layers
ecbe03b
- Read the image's creation date from public API
ecbe03b
- Bump containers/storage and containers/image
ecbe03b
- Don't panic if an image's ID can't be parsed
ecbe03b
- Turn on --enable-gc when running gometalinter
ecbe03b
- rmi: handle truncated image IDs
dd55030
dc3f8b6
* Tue Aug 15 2017 Josh Boyer <jwboyer@redhat.com> - 0.3-5.gitb9b2a8a
dc3f8b6
- Build for s390x as well
dc3f8b6
48a3db3
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-4.gitb9b2a8a
48a3db3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
48a3db3
29b2c26
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-3.gitb9b2a8a
29b2c26
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
29b2c26
8df8427
* Thu Jul 20 2017 Dan Walsh <dwalsh@redhat.com> 0.3-2.gitb9b2a8a7e
ffb71d3
- Bump for inclusion of OCI 1.0 Runtime and Image Spec
ffb71d3
4decefb
* Tue Jul 18 2017 Dan Walsh <dwalsh@redhat.com> 0.2.0-1.gitac2aad6
ecbe03b
- buildah run: Add support for -- ending options parsing 
ecbe03b
- buildah Add/Copy support for glob syntax
ecbe03b
- buildah commit: Add flag to remove containers on commit
ecbe03b
- buildah push: Improve man page and help information
ecbe03b
- buildah run: add a way to disable PTY allocation
ecbe03b
- Buildah docs: clarify --runtime-flag of run command
ecbe03b
- Update to match newer storage and image-spec APIs
ecbe03b
- Update containers/storage and containers/image versions
ecbe03b
- buildah export: add support
ecbe03b
- buildah images: update commands
ecbe03b
- buildah images: Add JSON output option
ecbe03b
- buildah rmi: update commands
ecbe03b
- buildah containers: Add JSON output option
ecbe03b
- buildah version: add command
ecbe03b
- buildah run: Handle run without an explicit command correctly
ecbe03b
- Ensure volume points get created, and with perms
ecbe03b
- buildah containers: Add a -a/--all option
4decefb
304d219
* Wed Jun 14 2017 Dan Walsh <dwalsh@redhat.com> 0.1.0-2.git597d2ab9
789e2dc
- Release Candidate 1
789e2dc
- All features have now been implemented.
789e2dc
17d40d4
* Fri Apr 14 2017 Dan Walsh <dwalsh@redhat.com> 0.0.1-1.git7a0a5333
17d40d4
- First package for Fedora