>>> docker exec -it CONTAINERID /bin/sh
/app # telnet
/bin/sh: telnet: not found
/app # apk update
fetch http://dl-cdn.alpinelinux.org/alpine/v3.7/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.7/community/x86_64/APKINDEX.tar.gz
v3.7.0-243-gf26e75a186 [http://dl-cdn.alpinelinux.org/alpine/v3.7/main]
v3.7.0-229-g087f28e29d [http://dl-cdn.alpinelinux.org/alpine/v3.7/community]
This file contains hidden or 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
| #include <iostream> | |
| #include <string> | |
| #include <Windows.h> | |
| #include <tchar.h> | |
| #include <stdio.h> | |
| #include <Winbase.h> | |
| HANDLE hCom; | |
| DWORD sendData (const char* data, DWORD size) |
This file contains hidden or 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
| ( function( $, plugin ) { | |
| "use strict"; | |
| // Working with promises to bubble event later than core. | |
| $.when( someObjectWithEvents ).done( function() { | |
| console.log( 'AJAX request done.' ); | |
| } ) | |
| .then( function() { | |
| setTimeout( function() { | |
| console.log( 'AJAX requests resolved.' ); |
This file contains hidden or 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"?> | |
| <wls:weblogic-ejb-jar xmlns:wls="http://xmlns.oracle.com/weblogic/weblogic-ejb-jar" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://java.sun.com/xml/ns/javaee | |
| http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd | |
| http://xmlns.oracle.com/weblogic/weblogic-ejb-jar | |
| http://xmlns.oracle.com/weblogic/weblogic-ejb-jar/1.2/weblogic-ejb-jar.xsd"> | |
| <!--weblogic-version:10.3.6--> | |
| <wls:weblogic-enterprise-bean> | |
| <wls:ejb-name>Calculator</wls:ejb-name> |
This file contains hidden or 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
| codename=$(lsb_release -c | awk '{print $2}') | |
| sudo tee /etc/apt/sources.list.d/ddebs.list << EOF | |
| deb http://ddebs.ubuntu.com/ ${codename} main restricted universe multiverse | |
| deb http://ddebs.ubuntu.com/ ${codename}-security main restricted universe multiverse | |
| deb http://ddebs.ubuntu.com/ ${codename}-updates main restricted universe multiverse | |
| deb http://ddebs.ubuntu.com/ ${codename}-proposed main restricted universe multiverse | |
| EOF | |
| sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys ECDCAD72428D7C01 | |
| sudo apt-get update |
NewerOlder