Replies: 4 comments 1 reply
-
@G07cha Have a look at the |
Beta Was this translation helpful? Give feedback.
-
@deviantony, yeah, I've deleted my previous comment because I've also found that it's possible to do through |
Beta Was this translation helpful? Give feedback.
-
Not sure if totally relevant to this issue, but I needed a tmpfs mount to link within portainer and have used the example from the docker site: docker volume create --driver local \
--opt type=tmpfs \
--opt device=tmpfs \
--opt o=size=100m,uid=1000 \
foo It's then selectable just as any volume. |
Beta Was this translation helpful? Give feedback.
-
I dont know if this is related, and/or a bug in portainer, but when creating frigate containers according to: https://docs.frigate.video/frigate/installation#docker, portainer is not able to duplicate/edit that container, because of the tmpfs (afaik) Has anybody got a hint on how to solve it? |
Beta Was this translation helpful? Give feedback.
-
Description
tmpfs mounts not full describe in portainer
and can't create mounts from portainer by tmpfs
image
Steps to reproduce the issue:
create container with tmpfs mounts
docker service create
--name testservice
--mount type=bind,source=/data/service/s0001/db,target=/var/lib/postgresql
--mount type=tmpfs,target=/tmp
--mount type=tmpfs,target=/var/tmp
--mount type=tmpfs,target=/var/run
--mount type=tmpfs,target=/run
--network nginx-network
--mode replicated
--replicas 1
docker-repo/testimage
go to service details, look at mounts - tmpfs mounts not fully visualisable
Technical details:
Beta Was this translation helpful? Give feedback.
All reactions