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:

J’ai trouvé une solution pour cela. Si cela ne fonctionne toujours pas, faites : cp /etc/systemd/system/docker.service /lib/systemd/system/docker.service. Cela a résolu mon problème.

Bonjour,

J’ai essayé la solution de @mpalmer, mais je ne parviens pas à reconstruire.

Avec docker info | grep Storage, j’obtiens :

WARNING: No swap limit support
WARNING: the aufs storage-driver is deprecated, and will be removed in a future release.

Quoi qu’il en soit, lorsque j’essaie de reconstruire, cela affiche :

Votre installation Docker n’utilise pas un pilote de stockage pris en charge. Si nous procédions, votre installation pourrait être corrompue.
aufs est le pilote de stockage recommandé, bien que zfs/btrfs/overlay et overlay2 puissent également fonctionner.
D’autres pilotes de stockage sont connus pour poser problème.
Vous pouvez identifier le système de fichiers que vous utilisez en exécutant “docker info” et en regardant la ligne ‘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’est-ce que je rate ?

Veuillez mettre à jour le lanceur :

cd /var/discourse
git pull

Ensuite, vous pourrez reconstruire.

Merci @Falco. Cela fonctionne maintenant.