Can't run ./launcher rebuild app - Docker storage driver is unsupported

Hi @kraml I made it works in my sandbox server, but when i try the same thing in my production server I have the bootstrap error, and I have my docker working in a partition FSType 1 is mounted fine and I did the steps you mencioned

  • Stop the service
  • Mount the var/lib/docker in the partition
  • restart the daemon
  • start the service (all fine)
  • go to /var/discourse
  • launch the bootstrap and have the same error

    Any advice?

The log you copied in screenshot don’t help in diagnose the problem, you need to provide the full rebuild log.

It is high probable that one of your plugin caused the rebuild problem, if you are sure you have done the right steps regarding filesystem.

The final step was rename folder /var/discourse, and make a new install, good luck i have a backup and now my site is up and with all the data.

thanks! I can confirm that this works great on a Linode running Ubuntu 14.04. Note that I was not able to actually stop the app because of the launcher storage driver error message.

This seems to be the only thing that worked on my Ubuntu 16.04, thanks! :slight_smile:

In a similar situation (Debian 8 Jessie)

“Your Docker installation is not using a supported storage driver”

Docker info
Storage Driver: devicemapper

# cat /etc/debian_version
8.9

# dpkg --get-selections | grep linux-image
linux-image-3.16.0-4-amd64          install
linux-image-amd64                   install

# dpkg -L linux-image-3.16.0-4-amd64 | grep aufs
/lib/modules/3.16.0-4-amd64/kernel/fs/aufs
/lib/modules/3.16.0-4-amd64/kernel/fs/aufs/aufs.ko

Solution was to create new file: /etc/docker/daemon.json

{
  "storage-driver": "aufs"
}
service docker restart

This basically saved my life. Worked like a charm in my EC2 Linux instance and relived it.

According with:

For Ubuntu 14.04 version, you must install linux-image-extra-* package before install docker.
So if you already installed docker, you should uninstall it first before start to install linux-image-extra-* package.
sudo apt-get purge docker-ce
sudo rm -rf /var/lib/docker
sudo rm /etc/systemd/system/docker.service

Then install linux-image-extra-*

sudo apt-get update

sudo apt-get install \
    linux-image-extra-$(uname -r) \
    linux-image-extra-virtual

and finally reinstall docker from git

wget -qO- https://get.docker.com/ | sh

regards :ok_hand:

Encontré una solución para esto. Si aún no funciona, ejecuta: cp /etc/systemd/system/docker.service /lib/systemd/system/docker.service. Eso solucionó mi problema.

Hola,

probé la solución de @mpalmer pero no puedo reconstruir.

Con docker info | grep Storage obtengo:

ADVERTENCIA: No hay soporte para límite de swap
ADVERTENCIA: el controlador de almacenamiento aufs está obsoleto y se eliminará en una versión futura.

De todos modos, cuando intento reconstruir, muestra:

Tu instalación de Docker no está utilizando un controlador de almacenamiento compatible. Si procedemos, es posible que tengas una instalación rota.
aufs es el controlador de almacenamiento recomendado, aunque zfs/btrfs/overlay y overlay2 también podrían funcionar.
Se sabe que otros controladores de almacenamiento son problemáticos.
Puedes ver qué sistema de archivos estás utilizando ejecutando “docker info” y buscando la línea ‘Storage Driver’.

> ps ax |grep dockerd

864 ? Ssl 0:00 /usr/bin/dockerd -H fd:// --containerd=/run/containerd/containerd.sock -s aufs
1664 pts/0 S+ 0:00 grep --color=auto dockerd

> cat /etc/lsb-release

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.04
DISTRIB_CODENAME=bionic
DISTRIB_DESCRIPTION=“Ubuntu 18.04.3 LTS”

¿Qué me estoy perdiendo?

Por favor, actualice el lanzador:

cd /var/discourse
git pull

Después de eso, podrá reconstruir.

Gracias @Falco. Ya funciona.