summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstkhan <khan@slickd.xyz>2023-03-15 11:37:50 -0500
committerstkhan <khan@slickd.xyz>2023-03-15 11:37:50 -0500
commitec4ff95ac2191bb5c1cb3e440a401859f535cf64 (patch)
treed9e2546eaa42ec0d2a5be87b2f31dff474645768
parentccb68263177a27a57fed98ee52b98e64d5462609 (diff)
remove docker
-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