TiBillet / Lespass

Membership and Ticketing in cooperative and open network.
https://tibillet.org
GNU Affero General Public License v3.0
10 stars 2 forks source link

Bug à l'installation : network frontend declared as external, but could not be found #2

Closed JulesLecuir closed 1 year ago

JulesLecuir commented 1 year ago

Suivre l'install sur https://tibillet.com/docs/install/install_ticketing

Au moment du premier docker-compose up -d, le build des images fonctionne mais au lancement, erreur. En simple :

▶ ~/Projects/TiBillet/Docker/Development (FedWallet) $ docker-compose up -d
network frontend declared as external, but could not be found

Du coup le reste ne fonctionne pas.

JulesLecuir commented 1 year ago

J'en profite pour revenir sur un autre petit couac facile du script d'install. Il est écrit git checkout origin/PreProd mais cela a pour effet de nous mettre en mode détaché:

▶ ~/Projects/TiBillet $ git checkout origin/PreProd
Note: switching to 'origin/PreProd'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:

  git switch -c <new-branch-name>

Or undo this operation with:

  git switch -

Turn off this advice by setting config variable advice.detachedHead to false

HEAD is now at 996ac43 ajout import {useLocalStore} from '@/stores/local'(router/index.js)

▶ ~/Projects/TiBillet ((HEAD detached at origin/PreProd)) $ git status
HEAD detached at origin/PreProd
nothing to commit, working tree clean

En faisant simplement un checkout sur la branche locale, la branche remote est de toute façon bien détectée:


▶ ~/Projects/TiBillet (main) $ git checkout PreProd
Branch 'PreProd' set up to track remote branch 'PreProd' from 'origin'.
Switched to a new branch 'PreProd'
Nasjoe commented 1 year ago
docker network create frontend

Merci ! Je rajoute sur la doc :)