system

(★ 72)

Smart home control center on .NET Core

File Explorer

  • .gitignore
  • Dockerfile
  • LICENSE
  • Package.xml
  • README.md
  • ThinkingHome.sln
  • ThinkingHome.sln.DotSettings

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

docker build

View Details ▼

Build an image from a Dockerfile.

docker build .

Build a Docker image using the Dockerfile in the current directory:

docker build {{github.com/creack/docker-firefox}}

Build a Docker image from a Dockerfile at a specified URL:

docker build {{[-t|--tag]}} {{name:tag}} .

Build a Docker image and tag it:

🔍

docker run

View Details ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

postgres

View Details ▼

Run the PostgreSQL database server.

postgres -p {{5433}}

Start the server on a specific port (defaults to 5432):

postgres -c {{shared_buffers=128MB}}

Set a runtime parameter (short form):

postgres --{{shared-buffers}}={{128MB}}

Set a runtime parameter (long form):

// repository documentation