summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xDockerfile11
-rwxr-xr-xDockerfilePullFromGit10
-rwxr-xr-xdocker-compose.yml24
3 files changed, 0 insertions, 45 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100755
index 0193116..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,11 +0,0 @@
-FROM busybox
-
-LABEL maintainer="Jeroen Pardon"
-
-WORKDIR /opt/html
-
-COPY . /opt/html
-
-EXPOSE 80
-
-ENTRYPOINT [ "httpd", "-f", "-v", "-u", "1000" ]
diff --git a/DockerfilePullFromGit b/DockerfilePullFromGit
deleted file mode 100755
index 898b803..0000000
--- a/DockerfilePullFromGit
+++ /dev/null
@@ -1,10 +0,0 @@
-FROM ubuntu:latest
-
-RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install nginx git cron nano
-
-COPY install.sh /tmp/
-
-EXPOSE 80
-
-# execute install, start cron and nginx
-CMD chmod +x /tmp/install.sh && /tmp/install.sh && cron && nginx
diff --git a/docker-compose.yml b/docker-compose.yml
deleted file mode 100755
index 761c273..0000000
--- a/docker-compose.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-version: "3.5"
-services:
-
- sui:
- container_name: sui
- restart: always
- build:
- context: ./
- environment:
- - VIRTUAL_HOST=test.laserr.net
- networks:
- - nginx-proxy
- - public
- ports:
- - 4000:80
- volumes:
- - ./:/opt/html
-
-networks:
- nginx-proxy:
- external: true
- public:
- external:
- name: public