mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2024-11-23 14:13:27 +01:00
17 lines
330 B
Bash
Executable File
17 lines
330 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This is development util
|
|
main() {
|
|
local wpVersion="${1:-latest}"
|
|
docker run \
|
|
--init \
|
|
--entrypoint="/bin/bash" \
|
|
--workdir="/app" \
|
|
--rm \
|
|
-it \
|
|
-v "${PWD}/src/init-utils:/app" \
|
|
"ghcr.io/n0rthernl1ghts/wordpress:${wpVersion}"
|
|
}
|
|
|
|
main "${@}"
|