trusted-sandbox 0.0.3.pre → 0.0.4.pre
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/trusted_sandbox/defaults.rb +2 -2
- data/lib/trusted_sandbox/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9af2320f694b6680f7d379fb627accbea8838bdc
|
|
4
|
+
data.tar.gz: 668cac12d319ac12790444efdfc15633c294469f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ac29dbd2e3fef1ede1b0f3a8be19bf855563c225b13d74b92a8359746b65a13e03c020c5f8c981b82f0901ba1d8805f46cf31d16a8712cd6068877097d84b6b
|
|
7
|
+
data.tar.gz: 68bf05f6e4108d6d467a2e1d36b15bf0eb24f8cd26379161bea4e04050d57f9ab4c350907fd2f891c98df07f3c69ef006e0a311d51009e77126999ea4afba9bb
|
|
@@ -14,8 +14,8 @@ module TrustedSandbox
|
|
|
14
14
|
self.host_code_root_path = 'tmp/code_dirs'
|
|
15
15
|
self.host_uid_pool_lock_path = 'tmp/uid_pool_lock'
|
|
16
16
|
|
|
17
|
-
self.docker_url = ENV['DOCKER_HOST']
|
|
18
|
-
self.docker_cert_path = ENV['DOCKER_CERT_PATH']
|
|
17
|
+
self.docker_url = ENV['DOCKER_HOST'] if ENV['DOCKER_HOST']
|
|
18
|
+
self.docker_cert_path = ENV['DOCKER_CERT_PATH'] if ENV['DOCKER_CERT_PATH']
|
|
19
19
|
|
|
20
20
|
# Note, changing these may require changing Dockerfile and run.rb and rebuilding the docker image
|
|
21
21
|
self.container_code_path = '/home/sandbox/src'
|