kniec/amazon-ecs-fargate-workshop-dev-ops-data 0
Amazon ECS Fargate workshop for developers, operators, and data engineers
AWS Batch helpers is a collection of scripts and tools that can be used with AWS Batch.
kniec/aws-batch-using-nice-dcv 0
This repository includes dockerfiles and scripts to integrate and run NICE DCV with AWS Batch
kniec/aws-node-termination-handler 0
A Kubernetes DaemonSet to gracefully handle EC2 Spot Instance interruptions.
AWS ParallelCluster is an AWS supported Open Source cluster management tool to deploy and manage HPC clusters in the AWS cloud.
Descheduler for Kubernetes
Docker CE
EasyBuild tutorial: https://boegel.github.io/easybuild-tutorial
Collection of tools and code examples to demonstrate best practices in using Amazon EC2 Spot Instances.
Collection of workshops to demonstrate best practices in using Amazon EC2 Spot Instances. https://aws.amazon.com/ec2/spot/
pull request commentcontainers/skopeo
add make/gcc and non-interactive
Closed in favour of #1007
comment created time in 24 days
pull request commentcontainers/skopeo
@rhatdan I like the reduced complexity using the official golang image - I'll close my PR in favour of this one.
comment created time in 24 days
pull request commentcontainers/skopeo
@myback That is why I used ARG and not ENV. :) It won't carry over into another image build like ENV will do. You can even see it when using a multistage Dockerfile.
$ cat Dockerfile
FROM alpine AS test1
ARG KEY=value
RUN echo $KEY
FROM test1
RUN echo $KEY
$ docker build -t test --no-cache .
Sending build context to Docker daemon 3.072kB
Step 1/5 : FROM alpine AS test1
---> a24bb4013296
Step 2/5 : ARG KEY=value
---> Running in 714bba7751a3
Removing intermediate container 714bba7751a3
---> 2833cb022b29
Step 3/5 : RUN echo $KEY
---> Running in 9ea4d7148f62
value
Removing intermediate container 9ea4d7148f62
---> e11d56b72078
Step 4/5 : FROM test1
---> e11d56b72078
Step 5/5 : RUN echo $KEY
---> Running in 96d6c6160321
Removing intermediate container 96d6c6160321
---> 8848d2fe0555
Successfully built 8848d2fe0555
Successfully tagged test:latest
$
The second echo $KEY does not yield the value as it is only present in the first stage.
comment created time in a month
pull request commentcontainers/skopeo
To me make is still missing in the install and when using --no-install-recommends a run of make binary fails as gcc can not be found.
(I also recommend ARG to provide a temporary environment var, but that is more cosmetic - I'd say why not use ENV?)
comment created time in a month
fork kniec/skopeo
Work with remote images registries - retrieving information, images, signing content
fork in a month
fork kniec/mini-helloworld-httpd
Competing for the smallest-possible 'Hello World' HTTP server
fork in 2 months
issue commenttomzo/gocd-yaml-config-plugin
Move current GoCD templates into Yaml. Or find a way to reference global Yaml templates
@lobsterdore do you happen to have an example of how you use it?
comment created time in 2 months
PR opened aws-samples/aws-batch-using-nice-dcv
Issue #, if available:
Description of changes:
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
pr created time in 3 months
push eventkniec/aws-batch-using-nice-dcv
commit sha eed248f8a1140c3fb8fa64c8d28af4c55a8bf2b8
Add generic ENV to Dockerfile
push time in 3 months
issue openedaws-samples/aws-batch-using-nice-dcv
missing backslash in dockerfile
https://github.com/aws-samples/aws-batch-using-nice-dcv/blob/75459f56fb9ff1ec426e50a2b89e35cc0c96d6e7/aws-batch-using-nice-dcv.dockerfile#L73
created time in 3 months
issue openedgogs/gogs
Backup: User configured to run Gogs is "git", but the current user is ""
<!--
First of all, please read https://www.chiark.greenend.org.uk/~sgtatham/bugs.html.
If you don't want to read, it's up to you. But don't waste your time continue reporting.
The issue will be closed without any explanation if it does not satisfy any of following requirements:
- Please speak English, we have forum in 中文: https://discuss.gogs.io/c/getting-help/getting-help-chinese.
- Please post any questions, configuration or deploy problems on our forum: https://discuss.gogs.io.
- Please do not end your title with a question mark or period.
- Please take a moment to search and make sure the issue doesn't already exist.
- Please give all relevant information below for bug reports; incomplete details are considered invalid report.
-->
Describe the bug <!-- A clear and concise description of what the bug is -->
Gogs version and commit <!-- The version number or the commit SHA of the Gogs instance you use. You can find these information in the admin dashboard ("/admin"). -->
/app/gogs/gogs -v
Gogs version 0.12.0+dev
Operating system <!-- The name and version of your operating system -->
/app/gogs $ cat /etc/os-release
NAME="Alpine Linux"
ID=alpine
VERSION_ID=3.11.6
Database <!-- The database and version you use -->
sqlite3
To Reproduce
When running /app/gogs/gogs backup --verbose I get the following error, even though the user I am running is git.
/app/gogs $ /app/gogs/gogs backup --verbose
2020/07/02 07:53:32 [FATAL] [gogs.io/gogs/gogs.go:40 main()] Failed to start application: init configuration: user configured to run Gogs is "git", but the current user is ""
/app/gogs $ whoami
git
/app/gogs $ id
uid=1000(git) gid=1000(git) groups=1000(git)
/app/gogs $
Can you reproduce the bug at https://try.gogs.io? <!-- If yes, please provide the example URL; if no, please explain why -->
Expected behavior <!-- A clear and concise description of what you expected to happen -->
The backup should be done
Actual behavior <!-- A clear and concise description of what you see instead -->
Seems like gogs is not able to read the user to check against the configured user.
Screenshots <!-- If applicable, add screenshots to help explain your problem -->
Additional context
<!-- Please include any error logs found in log/gogs.log -->
created time in 3 months
push eventkniec/jupyter-desktop-server
commit sha ebbfd679ca2b548e45afb6be18a05f9a85399e6e
use jupyter/base-notebook as base
push time in 3 months
pull request commentyuvipanda/jupyter-desktop-server
add Dockerfile and adjust readme to reflect a quick start
I changed the base image to a smaller (220MB) version of the jupyter notebook.
What would be the minimal version of the notebook you would see possible?
comment created time in 3 months
PR opened yuvipanda/jupyter-desktop-server
Took the freedom to add a Dockerfile and adjusting the readme to have a quick start (#11).
pr created time in 3 months
create barnchkniec/jupyter-desktop-server
created branch time in 3 months
fork kniec/spack-tutorial-container
Dockerfile and artifacts (minus build cache) to create Spack tutorial container.
fork in 3 months