Created
December 14, 2016 22:58
-
-
Save gitawego/fc546123dbc34cb0c0742e113354c173 to your computer and use it in GitHub Desktop.
opensuse 42.2 with java 32bit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '2' | |
| services: | |
| opensuse-java: | |
| build: . | |
| environment: | |
| #MONGODB_PORTS: "27017" | |
| MONGODB_HOSTS: "db" | |
| #MONGODB_URI: "mongodb://db:27017/pops-bo" | |
| restart: always | |
| networks: | |
| - default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM opensuse:42.2 | |
| WORKDIR /tmp | |
| #http://rpmfind.net/linux/RPM/opensuse/updates/13.2/i586/java-1_8_0-openjdk-headless-1.8.0.111-33.1.i586.html | |
| RUN zypper --non-interactive in compat-32bit && \ | |
| zypper --non-interactive install wget && \ | |
| wget ftp://rpmfind.net/linux/opensuse/update/13.2/i586/java-1_8_0-openjdk-headless-1.8.0.111-33.1.i586.rpm && \ | |
| zypper --non-interactive install java-1_8_0-openjdk-headless-1.8.0.111-33.1.i586.rpm && \ | |
| rm -f java-1_8_0-openjdk-headless-1.8.0.111-33.1.i586.rpm | |
| COPY ./entrypoint.sh ./ | |
| ENTRYPOINT ./entrypoint.sh | |
| CMD [""] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| export TERM=vt100 | |
| top -b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment