mirror of
https://github.com/ublue-os/forge.git
synced 2025-07-03 08:21:19 +03:00
Merge pull request #150 from ublue-os/tepene-quick-fix
chore: implement quick fixes
This commit is contained in:
commit
dde9397ef4
|
@ -9,10 +9,10 @@
|
|||
"installTools": true,
|
||||
"version": "3.13"
|
||||
},
|
||||
"ghcr.io/devcontainers-contrib/features/black:2": {
|
||||
"ghcr.io/devcontainers-extra/features/black:2": {
|
||||
"version": "24.4.1"
|
||||
},
|
||||
"ghcr.io/devcontainers-contrib/features/poetry:2": {
|
||||
"ghcr.io/devcontainers-extra/features/poetry:2": {
|
||||
"version": "1.8.2"
|
||||
}
|
||||
},
|
||||
|
|
3294
anvil/poetry.lock
generated
3294
anvil/poetry.lock
generated
File diff suppressed because it is too large
Load diff
5
forge.sh
5
forge.sh
|
@ -9,8 +9,9 @@ export FORGE_POD_NAME_PRE_AMBLE="ublue-os_forge-"
|
|||
export FORGE_POD_NAME_REVERSE_PROXY=${FORGE_POD_NAME_PRE_AMBLE}rvproxy
|
||||
export FORGE_POD_NAME_REGISTRY=${FORGE_POD_NAME_PRE_AMBLE}registry
|
||||
export FORGE_POD_NAME_ANVIL=${FORGE_POD_NAME_PRE_AMBLE}anvil
|
||||
export FORGE_HOST_IP_ADDRESS=$(hostname -I | awk '{print $1}')
|
||||
|
||||
## TODO: hostname -I no longer working in fedora 42. Find better solution. -> https://github.com/ublue-os/forge/issues/149
|
||||
# export FORGE_HOST_IP_ADDRESS=$(hostname -I | awk '{print $1}')
|
||||
export FORGE_HOST_IP_ADDRESS=$(hostname -i | grep -oE '([0-9]{1,3}\.){3}[0-9]{1,3}' | head -n 1)
|
||||
|
||||
# Functions
|
||||
function setup {
|
||||
|
|
Loading…
Reference in a new issue