-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.justfile
13 lines (11 loc) · 911 Bytes
/
.justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
# --- BEGIN Hansanghyeon/dotfile ---
import? '.justfile_'
MANAGER := "pnpm"
# --- END Hansanghyeon/dotfile ---
path := absolute_path(".")
env:
docker run --rm authelia/authelia:latest authelia crypto rand --length 64 --charset alphanumeric | awk -F': ' '{print $2}' >> '{{path}}/volume/authelia/secrets/JWT_SECRET'
docker run --rm authelia/authelia:latest authelia crypto rand --length 64 --charset alphanumeric | awk -F': ' '{print $2}' >> '{{path}}/volume/authelia/secrets/SESSION_SECRET'
docker run --rm authelia/authelia:latest authelia crypto rand --length 64 --charset alphanumeric | awk -F': ' '{print $2}' >> '{{path}}/volume/authelia/secrets/STORAGE_PASSWORD'
docker run --rm authelia/authelia:latest authelia crypto rand --length 64 --charset alphanumeric | awk -F': ' '{print $2}' >> '{{path}}/volume/authelia/secrets/STORAGE_ENCRYPTION_KEY'
echo "secret을 생성하였습니다."