11 lines
189 B
Bash
11 lines
189 B
Bash
#!/bin/bash
|
|
|
|
export BUCKET_PATH="${BACKUP_BUCKET}/example"
|
|
|
|
export VOLUME_PATH="${HOME}/${USER}-data"
|
|
export PORT=999999
|
|
PUID=$(id -u "$USER")
|
|
export PUID
|
|
PGID=$(id -g "$USER")
|
|
export PGID
|