View gist:048fc1172c1628ed048d
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM codenvy/che-dashboard |
View gist:15bdeebc5bb8beb13cf1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM florentbenoit/dashboard-factory |
View gist:57415e0a84bdbff78052
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM codenvy/ubuntu_jdk8 |
View gist:60e3ae255ed30afbc771
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM florentbenoit/codenvy-dashboard |
View gist:b187230f44426ef29d42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<lifecycleMappingMetadata> | |
<pluginExecutions> | |
<pluginExecution> | |
<pluginExecutionFilter> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-antrun-plugin</artifactId> | |
<versionRange>1.8</versionRange> | |
<goals> | |
<goal>run</goal> |
View gist:de6e9bd44e7eead0ff59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
extractProxySettings() { | |
local proxyUrl=$1 | |
local proxyType=$2 | |
local PROXY_WITH_USER_AUTH_REGEXP="https?://([^:]*):?(.*)@([^:]*):?(.*)" | |
local PROXY_WITH_USER_AUTH_REGEXP_FOR_SED="https\?://\([^:]*\):\?\(.*\)@\([^:]*\):\?\(.*\)" | |
local PROXY_WITHOUT_USER_AUTH_REGEXP="https?://([^:]*):?(.*)" |
View Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM codenvy/ubuntu_python:latest | |
RUN virtualenv $HOME/env && echo "export PATH=$HOME/env/bin:$PATH" >> $HOME/.bashrc |