├── .gitignore ├── README.md ├── c-http-server ├── Dockerfile ├── Makefile ├── Procfile ├── README.md ├── app.json ├── ipaddress.h └── main.c ├── demo ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── README.md ├── README.md.out ├── demo.wasm └── src │ └── main.rs ├── helloworld ├── Dockerfile ├── hello.c └── hello.wasm ├── nginx-wasm.yaml ├── nginx ├── .dockerignore ├── Dockerfile ├── README.md ├── html │ ├── index.html │ └── wasmer-logo.png ├── logs │ └── nginx.pid ├── nginx.conf └── nginx.wasm └── wasm-runtimeclass.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | demo/target 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/README.md -------------------------------------------------------------------------------- /c-http-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/c-http-server/Dockerfile -------------------------------------------------------------------------------- /c-http-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/c-http-server/Makefile -------------------------------------------------------------------------------- /c-http-server/Procfile: -------------------------------------------------------------------------------- 1 | web: ./main $PORT -------------------------------------------------------------------------------- /c-http-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/c-http-server/README.md -------------------------------------------------------------------------------- /c-http-server/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/c-http-server/app.json -------------------------------------------------------------------------------- /c-http-server/ipaddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/c-http-server/ipaddress.h -------------------------------------------------------------------------------- /c-http-server/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/c-http-server/main.c -------------------------------------------------------------------------------- /demo/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/demo/Cargo.lock -------------------------------------------------------------------------------- /demo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/demo/Cargo.toml -------------------------------------------------------------------------------- /demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/demo/Dockerfile -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/README.md.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/demo/README.md.out -------------------------------------------------------------------------------- /demo/demo.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/demo/demo.wasm -------------------------------------------------------------------------------- /demo/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/demo/src/main.rs -------------------------------------------------------------------------------- /helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/helloworld/Dockerfile -------------------------------------------------------------------------------- /helloworld/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/helloworld/hello.c -------------------------------------------------------------------------------- /helloworld/hello.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/helloworld/hello.wasm -------------------------------------------------------------------------------- /nginx-wasm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/nginx-wasm.yaml -------------------------------------------------------------------------------- /nginx/.dockerignore: -------------------------------------------------------------------------------- 1 | *_temp 2 | Dockerfile -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/nginx/README.md -------------------------------------------------------------------------------- /nginx/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/nginx/html/index.html -------------------------------------------------------------------------------- /nginx/html/wasmer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/nginx/html/wasmer-logo.png -------------------------------------------------------------------------------- /nginx/logs/nginx.pid: -------------------------------------------------------------------------------- 1 | 8821 2 | -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/nginx.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/nginx/nginx.wasm -------------------------------------------------------------------------------- /wasm-runtimeclass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/denverdino/wasm-container-samples/HEAD/wasm-runtimeclass.yaml --------------------------------------------------------------------------------