Skip to content
Snippets Groups Projects
Commit 31c3d300 authored by Benoit MARECHAL's avatar Benoit MARECHAL :fish:
Browse files

Update README.md

parent 6f8c3021
No related branches found
No related tags found
No related merge requests found
......@@ -421,14 +421,14 @@ docker build --build-arg MAVEN_OPTS="-Dhttp.proxyHost=$PROXY_HOST -Dhttp.proxyPo
```
## NPM behind a Proxy
## NPM (Javascript packager) behind a Proxy
```shell
npm config set proxy http://$PROXY_HOST:$PROXY_PORT
npm config set https-proxy http://$PROXY_HOST:$PROXY_PORT
```
## PIP behind a Proxy
## PIP (Python packager) behind a Proxy
```shell
pip install --proxy=http://$PROXY_HOST:$PROXY_PORT -r requirements.txt
......@@ -451,3 +451,10 @@ systemctl show --property=Environment gitlab-runner
gitlab-runner stop
gitlab-runner start
```
## Maven (Java Packaging)
```shell
export MAVEN_OPTS="-Dhttp.proxyHost=$PROXY_HOST -Dhttp.proxyPort=$PROXY_PORT -Dhttps.proxyHost=$PROXY_HOST -Dhttps.proxyPort=$PROXY_PORT"
# set MAVEN_OPTS.
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment