-
Updated
May 30, 2020
dockerfile
Here are 5,492 public repositories matching this topic...
-
Updated
Jun 18, 2020 - Dockerfile
I followed this manual https://github.com/oracle/docker-images/tree/master/OracleDatabase/SingleInstance and place the binaries in the right folder but i got this error after running ./buildDockerImage.sh -v 12.2.0.1 -e
Step 11/24 : COPY --chown=oracle:dba $INSTALL_FILE_1 $INSTALL_RSP $INSTALL_DB_BINARIES_FILE $INSTALL_DIR/
COPY failed: stat /var/lib/docker/tmp/docker-builder061218326/li
- 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
Dockerfile:
FROM alpine
RUN exit 1Build log:
# buildctl build --frontend dockerfile.v0 --local dockerfile=. --local context=. --output type=oci,dest=`pwd`/oci.tar
[+] Building 7.9s (5/5) FINISHED
=> [internal] load build definition from Dockerfile -
Updated
Jun 12, 2020 - Python
Error in glances.
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
On the basis of Review Russian documentation #1963
- Main
- Releases
- README
- Documentation Overview
- Configuration / Introduction
- Configuration / Dockerfile image
- Configuration / Stapel Image / Naming
- Configuration / Stapel Image / Base Image
- Configuration / Stapel Image / Docker direct
-
Updated
May 21, 2020 - JavaScript
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
When I filter logs by clicking the "enter" key - nothing happens, it works only if I click on the magnifying glass icon:
 --binding=$(ipconfig getifaddr en0) --secrets=trueBetter to note somewhere in the habitus doc based on my own experience
We might need to document how the logs are gathered inside our images and how this can be configured or integrated in a docker landscape.
Related: webdevops/Dockerfile#242
The commands listed for tagging or pushing to secure and insecure registries are identical -- is there meant to be a difference?
https://github.com/StefanScherer/dockerfiles-windows/blob/master/registry/README.md
Checked
Do you want to request a feature or report a bug?
Bug.
Please provide a sample input docker run command
docker run -d --name storageos \
-e HOSTNAME \
-e ADVERTISE_IP=xxx.xxx.xxx.xxx \
-e JOIN=xxxxxxxxxxxxxxxxx \
--
-
Updated
Jun 3, 2020 - Rust
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"
Keywords (such as FROM and RUN) should always be flush left.
I would expect that given this Dockerfile:
FROM ubuntu
RUN echo hiThat indenting it should result in:
FROM ubuntu
RUN echo hi./gdown.pl https://docs.google.com/spreadsheets/d/1Cjsryejgzo12Bn29BDiInOrGZWvg/edit quameserver.xlsx
--2019-04-22 16:34:41-- https://docs.google.com/spreadsheets/d/1Cjsryejgzo12Bn29BDiInOrGZWvg/edit
Resolving docs.google.com (docs.google.com)... 172.217.24.46, 2404:6800:4005:810::200e
Connecting to docs.google.com (docs.google.com)|172.217.24.46|:443... connected.
HTTP request sent, a
-
Updated
Oct 4, 2018 - Go
-
Updated
Jun 20, 2020 - Dockerfile
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.
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
-
Updated
May 7, 2020 - Rust
-
Updated
Jul 18, 2019 - HTML
Improve this page
Add a description, image, and links to the dockerfile topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the dockerfile topic, visit your repo's landing page and select "manage topics."


Is your feature request related to a problem? Please describe.
The drop down list for adding/editing volumes on the add/edit container page doesn't have a logical order.
Describe the solution you'd like
A simple alphabetical order would make things easier.