/ docker.el
docker.el
 1  ;;; docker.el --- Interface to Docker  -*- lexical-binding: t -*-
 2  
 3  ;; Author: Philippe Vaucher <philippe.vaucher@gmail.com>
 4  ;; URL: https://github.com/Silex/docker.el
 5  ;; Keywords: filename, convenience
 6  ;; Version: 2.5.0
 7  ;; Package-Requires: ((aio "1.0") (dash "2.19.1") (emacs "28.1") (s "1.13.0") (tablist "1.1") (transient "0.4.3"))
 8  
 9  ;; This file is NOT part of GNU Emacs.
10  
11  ;; This program is free software; you can redistribute it and/or modify
12  ;; it under the terms of the GNU General Public License as published by
13  ;; the Free Software Foundation; either version 3, or (at your option)
14  ;; any later version.
15  ;;
16  ;; This program is distributed in the hope that it will be useful,
17  ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18  ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  ;; GNU General Public License for more details.
20  ;;
21  ;; You should have received a copy of the GNU General Public License
22  ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23  ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24  ;; Boston, MA 02110-1301, USA.
25  
26  ;;; Commentary:
27  
28  ;; This package allows you to manipulate docker images, containers & more from Emacs.
29  
30  ;;; Code:
31  (eval-when-compile
32    (setq-local byte-compile-warnings '(not docstrings)))
33  
34  (require 'docker-compose)
35  (require 'docker-container)
36  (require 'docker-image)
37  (require 'docker-network)
38  (require 'docker-volume)
39  (require 'docker-context)
40  
41  (provide 'docker)
42  
43  ;;; docker.el ends here