mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2025-12-06 07:12:11 +01:00
8 lines
277 B
Bash
8 lines
277 B
Bash
#!/usr/bin/env bash
|
|
# get envs files and export envars
|
|
export $(egrep -v '^#' /run/secrets/* | xargs)
|
|
# if need some specific file, where password is the secret name
|
|
# export $(egrep -v '^#' /run/secrets/password| xargs)
|
|
# call the dockerfile's entrypoint
|
|
source /start.sh
|