You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After successful installation, the docker-compose.yml file is created (from getting-started-with-zitadel.sh via function renderDockerCompose()). Each time docker compose up -d is run, a random directory is created in the /var/lib/docker/volumes directory and persists there.
This is a coturn service directory that is not defined in the docker-compose.yml file - in docker inspect coturn/coturn is defined:
...
"Volumes": {
"/var/lib/coturn": {}
...
There should be defined volume in the docker-compose.yml file for coturn service - either temporary:
tmpfs:
- /var/lib/coturn
or permanent - depending on the amount of data that may occur (which I can't judge).
In the case of a temporary one, it would be appropriate to limit the resources allocated to tmpfs.
To Reproduce
Install netbird, run docker compose up -d and docker compose down several times - there will be random directories in the /var/lib/docker/volumes
Are you using NetBird Cloud?
self-host NetBird's control plane.
NetBird version
netbird version 0.45.2
The text was updated successfully, but these errors were encountered:
Describe the problem
After successful installation, the docker-compose.yml file is created (from getting-started-with-zitadel.sh via function
renderDockerCompose()
). Each timedocker compose up -d
is run, a random directory is created in the /var/lib/docker/volumes directory and persists there.This is a coturn service directory that is not defined in the docker-compose.yml file - in
docker inspect coturn/coturn
is defined:There should be defined volume in the docker-compose.yml file for coturn service - either temporary:
or permanent - depending on the amount of data that may occur (which I can't judge).
In the case of a temporary one, it would be appropriate to limit the resources allocated to tmpfs.
To Reproduce
Install netbird, run
docker compose up -d
anddocker compose down
several times - there will be random directories in the /var/lib/docker/volumesAre you using NetBird Cloud?
self-host NetBird's control plane.
NetBird version
netbird version 0.45.2
The text was updated successfully, but these errors were encountered: