Update .forgejo/workflows/umami.yml
This commit is contained in:
parent
99c51a4589
commit
e912381244
1 changed files with 18 additions and 1 deletions
|
|
@ -21,7 +21,24 @@ jobs:
|
||||||
ref: master
|
ref: master
|
||||||
|
|
||||||
- name: Set up Docker
|
- name: Set up Docker
|
||||||
uses: https://git.octubre.be/watson/setup-docker-action@v4
|
run: apt-get update && apt-get install -y \
|
||||||
|
curl \
|
||||||
|
gnupg \
|
||||||
|
ca-certificates \
|
||||||
|
lsb-release \
|
||||||
|
&& mkdir -m 0755 -p /etc/apt/keyrings \
|
||||||
|
&& curl -fsSL https://download.docker.com/linux/
|
||||||
|
|
||||||
|
apt-get update && apt-get install ca-certificates curl && install -m 0755 -d /etc/apt/keyrings
|
||||||
|
&& curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
|
||||||
|
&& chmod a+r /etc/apt/keyrings/docker.asc
|
||||||
|
|
||||||
|
&& echo \
|
||||||
|
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
|
||||||
|
$(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
|
||||||
|
tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||||
|
&& apt-get update
|
||||||
|
&& apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: docker version && pwd
|
run: docker version && pwd
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue