diff options
author | LinuxMeow <50368002+LinuxMeow@users.noreply.github.com> | 2022-10-31 19:19:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-31 19:19:20 +0100 |
commit | 67455274b66c7527b4ec66e2e4df60406782eedf (patch) | |
tree | 56b35c459945c4437107059cd3999094a7ed3b9c /Dockerfile | |
parent | fc9986de0a21b01c1c8e342a9c4c8c6b96cc7ea2 (diff) | |
download | searxng-67455274b66c7527b4ec66e2e4df60406782eedf.tar.gz searxng-67455274b66c7527b4ec66e2e4df60406782eedf.zip |
Remove unused volime
Docker file used old project volume instruction which is not existent in current one. It used to create clutter in created volumes without names and purposes polluting the docker environment.
Volume doesn't point to existing directory inside container and has no actual use other then creating docker volume mess each time container is run recreated or potentially restarted.
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 4509eea6e..64aa8bcef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,6 @@ FROM alpine:3.16 ENTRYPOINT ["/sbin/tini","--","/usr/local/searxng/dockerfiles/docker-entrypoint.sh"] EXPOSE 8080 -VOLUME /etc/searx VOLUME /etc/searxng ARG SEARXNG_GID=977 |