Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove the VOLUME instruction. (#17)
This instruction introduces two issues: 1. Each volume becomes an anonymous volume when the container is run. These volumes are not automatically removed unless the `--rm` option is used. Instead, create temporary volumes with the `--tmpfs` or `--mount` option, as needed. 2. Specifying a `/sys/fs/cgroup` volume interferes with systemd support. The anonymous volume overrides the cgroup mount under both docker and podman.
- Loading branch information