mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2025-02-17 10:47:51 +01:00
17 lines
330 B
Plaintext
17 lines
330 B
Plaintext
|
#!/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 "${@}"
|