12 lines
210 B
Bash
12 lines
210 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
mkdir -p /Forks/penpot/
|
||
|
cd /Forks/penpot/
|
||
|
|
||
|
wget https://raw.githubusercontent.com/penpot/penpot/main/docker/images/docker-compose.yaml
|
||
|
|
||
|
docker-compose \
|
||
|
-p penpot \
|
||
|
-f docker-compose.yaml \
|
||
|
up -d
|