mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2024-11-23 15:22:29 +01:00
25 lines
532 B
Bash
Executable File
25 lines
532 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This is development util
|
|
main() {
|
|
local wpVersion="${1:-6.5.3}"
|
|
|
|
set -ex
|
|
|
|
docker build \
|
|
--file=Dockerfile.dev \
|
|
--build-arg="WP_VERSION=${wpVersion}" \
|
|
-t "localhost/nlss-wp-dev:${wpVersion}" .
|
|
|
|
docker run \
|
|
--init \
|
|
--rm \
|
|
-it \
|
|
-v "${PWD}/:/workspace" \
|
|
-v "${PWD}/data/fish/config:/root/.config/fish" \
|
|
-v "${PWD}/data/fish/local:/root/.local/share/fish" \
|
|
"localhost/nlss-wp-dev:${wpVersion}"
|
|
}
|
|
|
|
main "${@}"
|