We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7169890 commit 3bbf77cCopy full SHA for 3bbf77c
Taskfile.yml
@@ -20,6 +20,14 @@ tasks:
20
desc: Install OS2BorgerPC Adminsite
21
cmds:
22
- task _show_preinstall_notes
23
+ - |
24
+ # Check if the external network 'frontend' exists, create if not
25
+ if ! docker network ls --format '{{.Name}}' | grep -wq frontend; then
26
+ echo "Creating external network 'frontend'"
27
+ docker network create frontend
28
+ else
29
+ echo "External network 'frontend' already exists"
30
+ fi
31
- task _version_file
32
- task _prepare_nginx_conf
33
- echo "Installing"
0 commit comments