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.
# USAGE:
# # 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
# docker build -t atom .

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python
# 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
import dbus

View File

@ -3,7 +3,7 @@
# Shamelessly copied from:
# 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="0x2" # 4.39s
#BLURTYPE="5x3" # 3.80s

View File

@ -18,7 +18,7 @@ RUN buildDeps=' \
' \
set -x \
&& 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 \
&& cp /go/bin/checkup /usr/bin/checkup \
&& apk del $buildDeps \

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie
# USAGE:
# # 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
# docker build -t chromium .

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie
# USAGE:
# # 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
# docker build -t doctor .
@ -19,9 +19,9 @@ FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com>
# 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 \
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
--repository https://dl-3.alpinelinux.org/alpine/edge/testing/ \
emacs
# Autorun doctor

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie
# USAGE:
# # 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
# docker build -t dunnet .
@ -19,9 +19,9 @@ FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com>
# 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 \
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
--repository https://dl-3.alpinelinux.org/alpine/edge/testing/ \
emacs
# Autorun dunnet

View File

@ -13,7 +13,7 @@ RUN buildDeps=' \
' \
set -x \
&& 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 \
&& ( \
cd /buck \

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie
# USAGE:
# # 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
# docker build -t gparted .

View File

@ -14,7 +14,7 @@
# ISSUES:
# # 'Gtk: cannot open display: :0'
# 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

View File

@ -11,7 +11,7 @@
# General Public License for more details.
#
# 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
## more information. Default values are commented out. Use either ; or # for

View File

@ -10,7 +10,7 @@
# --name skype \
# jess/skype
#
FROM debian:stretch
FROM debian:jessie
# Tell debconf to run in non-interactive mode
ENV DEBIAN_FRONTEND noninteractive
@ -19,12 +19,14 @@ ENV DEBIAN_FRONTEND noninteractive
# Make sure the repository information is up to date
RUN dpkg --add-architecture i386 && \
apt-get update && apt-get install -y \
ca-certificates \
curl \
--no-install-recommends
ENV SKYPE_VERSION 4.3.0.37-1
# 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 && \
apt-get install -fy \
&& rm -rf /var/lib/apt/lists/*

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie.
# USAGE:
# # 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
# docker build -t ssr .

View File

@ -20,7 +20,7 @@
# POSSIBLE ISSUES:
# # 'Gtk: cannot open display: :0'
# 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

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie.
# USAGE:
# # 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
# docker build -t termboy .

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie
# USAGE:
# # 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
# docker build -t tetris .
@ -19,9 +19,9 @@ FROM alpine:latest
MAINTAINER Jessie Frazelle <jess@linux.com>
# 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 \
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
--repository https://dl-3.alpinelinux.org/alpine/edge/testing/ \
emacs
# Autorun tetris

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie
# USAGE:
# # 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
# docker build -t jess/transmission-ui .

View File

@ -6,7 +6,7 @@
# Tested on Debian Jessie
# USAGE:
# # 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
# docker build -t jess/transmission .

View File

@ -22,7 +22,7 @@ RUN buildDeps=' \
zip \
' \
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 \
&& git clone --branch ${VAULT_VERSION} https://github.com/hashicorp/vault /go/src/github.com/hashicorp/vault \
&& cd /go/src/github.com/hashicorp/vault \