For information on our "lite" Docker image, which offers an ephemeral "leave no trace" option, seeDOCKER-lite.md. Quick Start To run Onetime Secret using Docker: Start a Redis container: docker run -p 6379:6379 -d redis:bookworm
Description Develop a Dockerfile-lite that combines Onetime Secret and Redis into a single container for simplified deployment and testing. This all-in-one container will provide an ephemeral, self-contained environment that aligns with ...
To run with docker: ``` shell docker compose up open http://localhost:3000/ ``` Generating a global secret We include a global secret in the encryption key so it needs to be long and secure. One approach for generating a secret: ``` shell dd if=/dev/urandom bs=20 count=1 | open...
I've noticed that the build time and size of our Docker images are taking longer. To reproduce the problem: Navigate to the project root directory Run the command docker build -t onetimesecret . to build the image. Observe the build time...
Delano, Thank you for your work creating OTS. It's awesome and works great. I've used your online version for years. I just installed the Docker version on Linux. Everything is working correctly except logins. When I go to sign in and lo...
User description Develop a Dockerfile-lite that combines Onetime Secret and Redis into a single container for simplified deployment and testing. This all-in-one container will provide an ephemeral,...
# Pull from GitHub Container Registry docker pull ghcr.io/onetimesecret/onetimesecret:latest # OR, pull from Docker Hub docker pull onetimesecret/onetimesecret:latest 2. Building the Image Locally If you prefer to build the image yourself: git clone https://github.com/onetimesecret/onetimesecret...
Keep passwords and other sensitive information out of your inboxes and chat logs. - History for docs/DOCKER.md - onetimesecret/onetimesecret
Gemfile.lock LICENSE.txt README.md config.ru docker-compose.yml pr_agent.toml renovate.jsonBreadcrumbs onetimesecret /sorbet/ README.mdLatest commit Cannot retrieve latest commit at this time. HistoryHistory File metadata and controls Preview Code Blame 47 lines (32 loc) · 1.84 KB ...
task "onetimesecret" { driver = "docker" config { image = "ghcr.io/onetimesecret/onetimesecret:v0.17.1" args = ["thin", "-R", "config.ru", "-p", "${NOMAD_PORT_http}", "start"] cap_drop = ["all"] ports = ["http"] network_mode = "host" mount { type = "bind" target...