Skip to content

Commit

Permalink
http:// -> https://
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Oct 25, 2016
1 parent 3d84875 commit d639673
Show file tree
Hide file tree
Showing 19 changed files with 28 additions and 26 deletions.
2 changes: 1 addition & 1 deletion atom/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
2 changes: 1 addition & 1 deletion buttslock/buttslock.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion buttslock/buttslock.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion checkup/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion chromium/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
6 changes: 3 additions & 3 deletions doctor/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand All @@ -19,9 +19,9 @@ FROM alpine:latest
MAINTAINER Jessie Frazelle <[email protected]>

# 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
Expand Down
6 changes: 3 additions & 3 deletions dunnet/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand All @@ -19,9 +19,9 @@ FROM alpine:latest
MAINTAINER Jessie Frazelle <[email protected]>

# 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
Expand Down
2 changes: 1 addition & 1 deletion gitiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion gparted/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
2 changes: 1 addition & 1 deletion keepass2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pulseaudio/daemon.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 4 additions & 2 deletions skype/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/*
Expand Down
2 changes: 1 addition & 1 deletion ssr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
2 changes: 1 addition & 1 deletion sublime-text-3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion termboy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
6 changes: 3 additions & 3 deletions tetris/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand All @@ -19,9 +19,9 @@ FROM alpine:latest
MAINTAINER Jessie Frazelle <[email protected]>

# 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
Expand Down
2 changes: 1 addition & 1 deletion transmission-ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
2 changes: 1 addition & 1 deletion transmission/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down
2 changes: 1 addition & 1 deletion vault/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit d639673

Please sign in to comment.