diff --git a/.cockpit-podman.metadata b/.cockpit-podman.metadata
new file mode 100644
index 0000000..a3306a3
--- /dev/null
+++ b/.cockpit-podman.metadata
@@ -0,0 +1 @@
+980523467a4ebef153e55b60e56cb671bcc90a9e SOURCES/cockpit-podman-3.tar.gz
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..d47dccd
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+SOURCES/cockpit-podman-3.tar.gz
diff --git a/SPECS/cockpit-podman.spec b/SPECS/cockpit-podman.spec
new file mode 100644
index 0000000..ef1e356
--- /dev/null
+++ b/SPECS/cockpit-podman.spec
@@ -0,0 +1,61 @@
+# This spec file has been automatically updated
+Version:        3
+Release: 1%{?dist}
+# we generally want CentOS packages to be like RHEL; special cases need to check %{centos} explicitly
+%if 0%{?centos}
+%define rhel %{centos}
+%endif
+
+Name:           cockpit-podman
+Summary:        Cockpit component for Podman containers
+License:        LGPLv2+
+URL:            https://github.com/cockpit-project/cockpit-podman
+
+Source0:        https://github.com/cockpit-project/cockpit-podman/releases/download/%{version}/cockpit-podman-%{version}.tar.gz
+BuildArch:      noarch
+BuildRequires:  libappstream-glib
+
+Requires:       cockpit-bridge >= 138
+Requires:       cockpit-shell >= 138
+%if 0%{?rhel}
+Requires:       podman >= 1.2.0
+%else
+Requires:       podman >= 1:1.2.0
+%endif
+
+%description
+The Cockpit user interface for Podman containers.
+
+%prep
+%setup -q -n cockpit-podman
+
+%build
+# Nothing to build
+
+%install
+%make_install
+appstream-util validate-relax --nonet %{buildroot}/%{_datadir}/metainfo/*
+
+%files
+%{_datadir}/cockpit/*
+%{_datadir}/metainfo/*
+
+%changelog
+* Mon Jun 17 2019 Martin Pitt <mpitt@redhat.com> - 3-1
+- Enable Commit button for running containers
+- Fix race condition with container deletion
+- Stop fetching all containers/images for each container/image event
+
+* Sun Jun 09 2019 Martin Pitt <mpitt@redhat.com> - 2-2
+- Fix podman dependency
+
+* Mon May 27 2019 Martin Pitt <mpitt@redhat.com> - 2-1
+- Update to upstream 2 release
+- Support podman API 1.3
+- Support running commands with arguments
+- Show the default command coming from image
+- Implement filtering of images and containers
+
+* Wed Apr 17 2019 Cockpit Project <cockpituous@gmail.com> - 1-2
+- Update to upstream 1 release
+