http:// -> https://

Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2016-10-25 13:37:56 -07:00
parent 3d84875189
commit d639673cf6
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
19 changed files with 28 additions and 26 deletions

View File

@ -9,7 +9,7 @@
# Tested on Debian Jessie. # Tested on Debian Jessie.
# USAGE: # USAGE:
# # Download atom Dockerfile # # Download atom Dockerfile
# wget http://raw.githubusercontent.com/jessfraz/dockerfiles/master/atom/Dockerfile # wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/atom/Dockerfile
# #
# # Build atom image # # Build atom image
# docker build -t atom . # docker build -t atom .

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
# Shamelessly pasted from: # Shamelessly pasted from:
# http://serverfault.com/questions/573379/system-suspend-dbus-upower-signals-are-not-seen # https://serverfault.com/questions/573379/system-suspend-dbus-upower-signals-are-not-seen
from datetime import datetime from datetime import datetime
import dbus import dbus

View File

@ -3,7 +3,7 @@
# Shamelessly copied from: # Shamelessly copied from:
# https://github.com/meskarune/i3lock-fancy # https://github.com/meskarune/i3lock-fancy
# All options are here: http://www.imagemagick.org/Usage/blur/#blur_args # All options are here: https://www.imagemagick.org/Usage/blur/#blur_args
#BLURTYPE="0x5" # 7.52s #BLURTYPE="0x5" # 7.52s
#BLURTYPE="0x2" # 4.39s #BLURTYPE="0x2" # 4.39s
#BLURTYPE="5x3" # 3.80s #BLURTYPE="5x3" # 3.80s

View File

@ -18,7 +18,7 @@ RUN buildDeps=' \
' \ ' \
set -x \ set -x \
&& apk update \ && apk update \
&& apk add --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/community $buildDeps \ && apk add --no-cache --repository https://dl-3.alpinelinux.org/alpine/edge/community $buildDeps \
&& go get github.com/sourcegraph/checkup/cmd/checkup \ && go get github.com/sourcegraph/checkup/cmd/checkup \
&& cp /go/bin/checkup /usr/bin/checkup \ && cp /go/bin/checkup /usr/bin/checkup \
&& apk del $buildDeps \ && apk del $buildDeps \

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie # Tested on Debian Jessie
# USAGE: # USAGE:
# # Download Chromium Dockerfile # # Download Chromium Dockerfile
# wget http://raw.githubusercontent.com/jessfraz/dockerfiles/master/chromium/Dockerfile # wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/chromium/Dockerfile
# #
# # Build chromium image # # Build chromium image
# docker build -t chromium . # docker build -t chromium .

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie # Tested on Debian Jessie
# USAGE: # USAGE:
# # Download doctor Dockerfile # # Download doctor Dockerfile
# wget http://raw.githubusercontent.com/jessfraz/dockerfiles/master/doctor/Dockerfile # wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/doctor/Dockerfile
# #
# # Build doctor image # # Build doctor image
# docker build -t doctor . # docker build -t doctor .
@ -19,9 +19,9 @@ FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com> MAINTAINER Jessie Frazelle <jess@linux.com>
# Install emacs: # Install emacs:
# Note: Emacs is only in testing repo -> http://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64 # Note: Emacs is only in testing repo -> https://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
RUN apk --no-cache add \ RUN apk --no-cache add \
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \ --repository https://dl-3.alpinelinux.org/alpine/edge/testing/ \
emacs emacs
# Autorun doctor # Autorun doctor

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie # Tested on Debian Jessie
# USAGE: # USAGE:
# # Download dunnet Dockerfile # # Download dunnet Dockerfile
# wget http://raw.githubusercontent.com/jessfraz/dockerfiles/master/dunnet/Dockerfile # wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/dunnet/Dockerfile
# #
# # Build dunnet image # # Build dunnet image
# docker build -t dunnet . # docker build -t dunnet .
@ -19,9 +19,9 @@ FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com> MAINTAINER Jessie Frazelle <jess@linux.com>
# Install emacs: # Install emacs:
# Note: Emacs is only in testing repo -> http://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64 # Note: Emacs is only in testing repo -> https://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
RUN apk --no-cache add \ RUN apk --no-cache add \
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \ --repository https://dl-3.alpinelinux.org/alpine/edge/testing/ \
emacs emacs
# Autorun dunnet # Autorun dunnet

View File

@ -13,7 +13,7 @@ RUN buildDeps=' \
' \ ' \
set -x \ set -x \
&& apk --no-cache add $buildDeps \ && apk --no-cache add $buildDeps \
--repository http://dl-3.alpinelinux.org/alpine/edge/community/ \ --repository https://dl-3.alpinelinux.org/alpine/edge/community/ \
&& git clone --depth 1 https://github.com/facebook/buck.git /buck \ && git clone --depth 1 https://github.com/facebook/buck.git /buck \
&& ( \ && ( \
cd /buck \ cd /buck \

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie # Tested on Debian Jessie
# USAGE: # USAGE:
# # Download gparted Dockerfile # # Download gparted Dockerfile
# wget http://raw.githubusercontent.com/jessfraz/dockerfiles/master/gparted/Dockerfile # wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/gparted/Dockerfile
# #
# # Build gparted image # # Build gparted image
# docker build -t gparted . # docker build -t gparted .

View File

@ -14,7 +14,7 @@
# ISSUES: # ISSUES:
# # 'Gtk: cannot open display: :0' # # 'Gtk: cannot open display: :0'
# Try to set 'DISPLAY=your_host_ip:0' or run 'xhost +' on your host. # Try to set 'DISPLAY=your_host_ip:0' or run 'xhost +' on your host.
# (see: http://stackoverflow.com/questions/28392949/running-chromium-inside-docker-gtk-cannot-open-display-0) # (see: https://stackoverflow.com/questions/28392949/running-chromium-inside-docker-gtk-cannot-open-display-0)
# #
FROM debian:sid FROM debian:sid

View File

@ -11,7 +11,7 @@
# General Public License for more details. # General Public License for more details.
# #
# You should have received a copy of the GNU Lesser General Public License # You should have received a copy of the GNU Lesser General Public License
# along with PulseAudio; if not, see <http://www.gnu.org/licenses/>. # along with PulseAudio; if not, see <https://www.gnu.org/licenses/>.
## Configuration file for the PulseAudio daemon. See pulse-daemon.conf(5) for ## Configuration file for the PulseAudio daemon. See pulse-daemon.conf(5) for
## more information. Default values are commented out. Use either ; or # for ## more information. Default values are commented out. Use either ; or # for

View File

@ -10,7 +10,7 @@
# --name skype \ # --name skype \
# jess/skype # jess/skype
# #
FROM debian:stretch FROM debian:jessie
# Tell debconf to run in non-interactive mode # Tell debconf to run in non-interactive mode
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
@ -19,12 +19,14 @@ ENV DEBIAN_FRONTEND noninteractive
# Make sure the repository information is up to date # Make sure the repository information is up to date
RUN dpkg --add-architecture i386 && \ RUN dpkg --add-architecture i386 && \
apt-get update && apt-get install -y \ apt-get update && apt-get install -y \
ca-certificates \
curl \ curl \
--no-install-recommends --no-install-recommends
ENV SKYPE_VERSION 4.3.0.37-1
# Install Skype # Install Skype
RUN curl http://download.skype.com/linux/skype-debian_4.3.0.37-1_i386.deb > /usr/src/skype.deb && \ RUN curl -sSL "https://download.skype.com/linux/skype-debian_${SKYPE_VERSION}_i386.deb" > /usr/src/skype.deb && \
dpkg --force-depends -i /usr/src/skype.deb && \ dpkg --force-depends -i /usr/src/skype.deb && \
apt-get install -fy \ apt-get install -fy \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie. # Tested on Debian Jessie.
# USAGE: # USAGE:
# # Download ssr Dockerfile # # Download ssr Dockerfile
# wget http://raw.githubusercontent.com/jessfraz/dockerfiles/master/ssr/Dockerfile # wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/ssr/Dockerfile
# #
# # Build ssr image # # Build ssr image
# docker build -t ssr . # docker build -t ssr .

View File

@ -20,7 +20,7 @@
# POSSIBLE ISSUES: # POSSIBLE ISSUES:
# # 'Gtk: cannot open display: :0' # # 'Gtk: cannot open display: :0'
# Try to set 'DISPLAY=your_host_ip:0' or run 'xhost +' on your host. # Try to set 'DISPLAY=your_host_ip:0' or run 'xhost +' on your host.
# (see: http://stackoverflow.com/questions/28392949/running-chromium-inside-docker-gtk-cannot-open-display-0) # (see: https://stackoverflow.com/questions/28392949/running-chromium-inside-docker-gtk-cannot-open-display-0)
# #
FROM debian:stretch FROM debian:stretch

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie. # Tested on Debian Jessie.
# USAGE: # USAGE:
# # Download termboy Dockerfile # # Download termboy Dockerfile
# wget http://raw.githubusercontent.com/jessfraz/dockerfiles/master/termboy/Dockerfile # wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/termboy/Dockerfile
# #
# # Build termboy image # # Build termboy image
# docker build -t termboy . # docker build -t termboy .

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie # Tested on Debian Jessie
# USAGE: # USAGE:
# # Download tetris Dockerfile # # Download tetris Dockerfile
# wget http://raw.githubusercontent.com/jessfraz/dockerfiles/master/tetris/Dockerfile # wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/tetris/Dockerfile
# #
# # Build tetris image # # Build tetris image
# docker build -t tetris . # docker build -t tetris .
@ -19,9 +19,9 @@ FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com> MAINTAINER Jessie Frazelle <jess@linux.com>
# Install emacs: # Install emacs:
# Note: Emacs is only in testing repo -> http://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64 # Note: Emacs is only in testing repo -> https://pkgs.alpinelinux.org/packages?package=emacs&repo=all&arch=x86_64
RUN apk --no-cache add \ RUN apk --no-cache add \
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \ --repository https://dl-3.alpinelinux.org/alpine/edge/testing/ \
emacs emacs
# Autorun tetris # Autorun tetris

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie # Tested on Debian Jessie
# USAGE: # USAGE:
# # Download transmission-ui Dockerfile # # Download transmission-ui Dockerfile
# wget http://raw.githubusercontent.com/jessfraz/dockerfiles/master/transmission-ui/Dockerfile # wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/transmission-ui/Dockerfile
# #
# # Build transmission image # # Build transmission image
# docker build -t jess/transmission-ui . # docker build -t jess/transmission-ui .

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie # Tested on Debian Jessie
# USAGE: # USAGE:
# # Download transmission Dockerfile # # Download transmission Dockerfile
# wget http://raw.githubusercontent.com/jessfraz/dockerfiles/master/transmission/Dockerfile # wget https://raw.githubusercontent.com/jessfraz/dockerfiles/master/transmission/Dockerfile
# #
# # Build transmission image # # Build transmission image
# docker build -t jess/transmission . # docker build -t jess/transmission .

View File

@ -22,7 +22,7 @@ RUN buildDeps=' \
zip \ zip \
' \ ' \
set -x \ set -x \
&& apk --no-cache add --repository http://dl-3.alpinelinux.org/alpine/edge/community $buildDeps \ && apk --no-cache add --repository https://dl-3.alpinelinux.org/alpine/edge/community $buildDeps \
&& mkdir -p /go/src/github.com/hashicorp \ && mkdir -p /go/src/github.com/hashicorp \
&& git clone --branch ${VAULT_VERSION} https://github.com/hashicorp/vault /go/src/github.com/hashicorp/vault \ && git clone --branch ${VAULT_VERSION} https://github.com/hashicorp/vault /go/src/github.com/hashicorp/vault \
&& cd /go/src/github.com/hashicorp/vault \ && cd /go/src/github.com/hashicorp/vault \