Skip to content

Commit

Permalink
Additional containers
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrudg committed Jun 11, 2020
1 parent 6b59c06 commit f76019b
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 2 deletions.
29 changes: 27 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,33 @@
Dockerfiles & Definition files used for containers pulled from the Singularity
test suite.

On hub.docker.com/u/sylabsio:

- `docker-aufs-sanity`
- `docker-singularity-userperms`
- `docker-singularity-linkwh`
- `docker-userperms`
- `docker-linkwh`
- `docker-lolcow`
- `docker-issue4525`

To build and push these containers for multiple architectures, using Docker
Desktop...

Ensure you are using Docker Desktop >2.0.4.0 and turn on Command Line
Experimental Features in preferences.

Setup a buildx multi-arch builder:

```
docker buildx create --name archbuilder
docker buildx use archbuilder
docker buildx inspect --bootstrap
```

Build and push the containers using the provided script:

```
./build_push_docker.sh
```



3 changes: 3 additions & 0 deletions docker-issue4525/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM alpine:3
RUN mkdir directory && touch file && chmod 000 directory file

File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions docker-lolcow/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM ubuntu:16.04

RUN apt-get update && apt-get install -y fortune cowsay lolcat

ENV PATH /usr/games:${PATH}
ENV LC_ALL=C

ENTRYPOINT fortune | cowsay | lolcat

File renamed without changes.
File renamed without changes.

0 comments on commit f76019b

Please sign in to comment.