9 lines
197 B
Bash
9 lines
197 B
Bash
#!/bin/dash
|
|
|
|
BASE_URL=https://git.netm.ch/m/os-init/raw/branch/main
|
|
|
|
mkdir /srv/stacks/portainer
|
|
cd /srv/stacks/portainer
|
|
wget "${BASE_URL}"/alpine/apps/portainer/compose.yaml
|
|
docker compose up -d
|