From 451d794b9cdb764627d1814766e63bcd1be4a211 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Fri, 22 Apr 2022 20:04:31 -0500 Subject: [PATCH] Add files --- .gitignore | 5 +++++ README.md | 6 +++++- docker-compose.yaml | 10 ++++++++++ 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 docker-compose.yaml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5e6bb01 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +data/ +.env + +# doesn't build correctly when a submodule, so it's manually cloned +isso/ diff --git a/README.md b/README.md index 026ad2b..787be5a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ # isso -Docker compose configs for Isso \ No newline at end of file +Docker compose configs for Isso + +Isso doesn't want to build as a submodule, but I have it cloned manually. + +See https://github.com/posativ/isso/issues/836 for the current Dockerfile in use. diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..ab79b35 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,10 @@ +version: "3.8" +services: + isso: + build: isso/ + restart: always + volumes: + - ./data/isso/config:/config + - ./data/isso/db:/db + ports: + - 127.0.0.1:86:8080