From edb63316bed4b33560d79f0611193aab168dca5a Mon Sep 17 00:00:00 2001 From: dylan Date: Mon, 4 Nov 2024 17:41:42 +0100 Subject: [PATCH] Initial commit --- .gitignore | 1 + docker-compose.yml | 7 +++++++ gopher.iml | 8 ++++++++ gopher_content/about.txt | 1 + gopher_content/blog/gophermap | 1 + gopher_content/blog/hello.txt | 1 + gopher_content/gophermap | 4 ++++ 7 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 docker-compose.yml create mode 100644 gopher.iml create mode 100644 gopher_content/about.txt create mode 100644 gopher_content/blog/gophermap create mode 100644 gopher_content/blog/hello.txt create mode 100644 gopher_content/gophermap diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..723ef36 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..728a6b4 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,7 @@ +services: + gopher: + image: joshkaiju/gophernicus:v1 + ports: + - "70:70" + volumes: + - ./gopher_content:/var/gopher diff --git a/gopher.iml b/gopher.iml new file mode 100644 index 0000000..9a5cfce --- /dev/null +++ b/gopher.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/gopher_content/about.txt b/gopher_content/about.txt new file mode 100644 index 0000000..c142fcf --- /dev/null +++ b/gopher_content/about.txt @@ -0,0 +1 @@ +Hello, it's me \ No newline at end of file diff --git a/gopher_content/blog/gophermap b/gopher_content/blog/gophermap new file mode 100644 index 0000000..cac65df --- /dev/null +++ b/gopher_content/blog/gophermap @@ -0,0 +1 @@ +0[2024-11-04] Hello /blog/hello.txt 0 \ No newline at end of file diff --git a/gopher_content/blog/hello.txt b/gopher_content/blog/hello.txt new file mode 100644 index 0000000..22e7590 --- /dev/null +++ b/gopher_content/blog/hello.txt @@ -0,0 +1 @@ +This is my first blog post! \ No newline at end of file diff --git a/gopher_content/gophermap b/gopher_content/gophermap new file mode 100644 index 0000000..f71ab42 --- /dev/null +++ b/gopher_content/gophermap @@ -0,0 +1,4 @@ +0about about.txt 0 + +1blog blog 0 +Tales about my life \ No newline at end of file