remove old drone config

This commit is contained in:
Valient Gough 2016-09-07 13:11:57 +02:00
parent c4f5325ebc
commit 0eb4641fd7
No known key found for this signature in database
GPG Key ID: B515DCEB95967051
6 changed files with 1 additions and 73 deletions

View File

@ -52,5 +52,5 @@ Compiling on Debian and Ubuntu
See the automated build static in README.md for current build status on Ubuntu systems.
The build configuration files (.drone.yml and circle.yml) always contains up-to-date
The build configuration files (circle.yml) always contains up-to-date
instructions to build EncFS on Ubuntu distributions.

View File

@ -1,26 +0,0 @@
# Pull from base Ubuntu image
FROM ubuntu
# Do system updates and install dependencies
RUN apt-get update
RUN apt-get -y upgrade
RUN sudo apt-get -y install git wget autopoint libfuse-dev
RUN apt-get clean
# Download Drone.io
RUN wget http://downloads.drone.io/master/drone.deb
RUN dpkg -i drone.deb
# Expose the Drone.io port
EXPOSE 8080
ENV DRONE_SERVER_PORT 0.0.0.0:8080
ENV DRONE_DATABASE_DATASOURCE /var/lib/drone/drone.sqlite
# Define our GitHub oAuth keys below
ENV DRONE_GITHUB_CLIENT <client key>
ENV DRONE_GITHUB_SECRET <secret>
# The command we'll be running when the container starts
CMD /usr/local/bin/droned

View File

@ -1,6 +0,0 @@
docker run -d --name="drone-ci" \
-p 8080:8080 \
-v /var/lib/drone/ \
-v /var/run/docker.sock:/var/run/docker.sock \
-v /home/core/droneio/drone.sqlite:/var/lib/drone/drone.sqlite \
encfs_drone

View File

@ -1 +0,0 @@
docker build -t encfs_drone .

View File

@ -1,38 +0,0 @@
FROM ubuntu:14.04
MAINTAINER vgough
# update and install dependencies
RUN apt-get update \
&& apt-get install -y \
software-properties-common \
wget \
make \
&& echo 'deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.4 main' >> /etc/apt/sources.list \
&& wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key|sudo apt-key add - \
&& add-apt-repository -y ppa:ubuntu-toolchain-r/test \
&& apt-get update \
&& apt-get install -y \
gcc-4.9 g++-4.9 gcc-4.9-base \
clang-3.4 lldb-3.4 \
&& apt-get clean \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 100 \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 100
# build cmake
RUN wget http://www.cmake.org/files/v3.2/cmake-3.2.2.tar.gz \
&& tar -xvf cmake-3.2.2.tar.gz
WORKDIR cmake-3.2.2
RUN ./bootstrap \
&& make \
&& make install
RUN apt-get -y upgrade \
&& apt-get -y install \
git \
libfuse-dev \
libssl-dev \
gettext \
libgettextpo-dev \
&& apt-get clean

View File

@ -1 +0,0 @@
docker build -t encfs_worker .