The Wayback Machine - https://web.archive.org/web/20200624140419/https://github.com/topics/dockerfile
Skip to content
#

dockerfile

Here are 5,492 public repositories matching this topic...

iphydf
iphydf commented Apr 23, 2020
  • This is a bug report
  • I searched existing issues before opening this one

Expected behavior

No warning.

Actual behavior

  • Double quote to prevent globbing and word splitting.
  • d is referenced but not assigned.

None of these are relevant. ShellCheck is never relevant, because it's all about how you run shell commands, while the json-array format doesn't run any s

bug
b0red
b0red commented May 21, 2019

I'm running the the latest version of this container (glances) and I get this error:

`Exception in thread Thread-29:,
Traceback (most recent call last):,
  File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner,
    self.run(),
  File "/usr/local/lib/python2.7/dist-packages/glances/plugins/glances_docker.py", line 656, in run,
    for i in self._stats_stream:,
  File 
werf
leoauri
leoauri commented Sep 8, 2018

If the path contains spaces, then
docker run -it -p 8888:8888 -p 6006:6006 -v /$(pwd)/session-1:/notebooks --name tf cadl /bin/bash
might throw the error
docker: invalid reference format: repository name must be lowercase.
or behave unexpectedly.

Wrapping in quotation marks solves this:
`docker run -it -p 8888:8888 -p 6006:6006 -v "/$(pwd)/session-1":/notebooks --name tf cadl /bin/bas

devunt
devunt commented Aug 24, 2017

As documentation describes, using merged form of ENV directives is preferred over the single form since it will yield smaller intermediate layers and containers.

Hence suggesting changing

ENV myName John Doe
ENV myDog Rex The Dog
ENV myCat fluffy

to

ENV myName="John Doe" \
    myDog="Rex The Dog" \
    myCat="fluffy"
bwateratmsft
bwateratmsft commented Feb 24, 2020

The extension has a huge amount of repeated code and complex JSON schema in package.json. Unfortunately VSCode does not support the usual $ref notation, except for absolute URIs (where support is half-baked).

The best option therefore is a build-time task to take code from a schema.json file and stuff it into a built package.json file.

Nuru
Nuru commented May 10, 2019

what

When using Teleport tsh login to connect to a cluster, although kubectl works fine, kops does not, because, in general, the Teleport name of the cluster is not the same as the kops cluster name. This leads to an error like

 ⧉  staging (staging:default)+
 √ : (cpco-staging-admin) helmfiles ⨠ kops validate cluster
Validating cluster us-west-2.staging.cpco.io

Cannot load k

Improve this page

Add a description, image, and links to the dockerfile topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the dockerfile topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.