hardfiles

- Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.acid.vegas/-c.git
Log | Files | Refs | Archive | README | LICENSE

commit 24f310eb6c3b13f41627a07f83d3cf2a7d4e37ff
parent e3e75e7b0bfca110cd305c2198c52ce27b2a1a10
Author: hgw <hgw7@yahoo.com>
Date: Thu, 5 Oct 2023 00:24:37 +0000

Switch to Docker image rather than building

Diffstat:
M.dockerignore | 2++
MREADME.md | 2+-
Mdocker-compose.yml | 2+-

3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/.dockerignore b/.dockerignore
@@ -1,3 +1,5 @@
+.git/
+files/
 Dockerfile
 docker-compose.yml
 .gitignore
diff --git a/README.md b/README.md
@@ -34,7 +34,7 @@ mkdir files
 
 Execute the following commands to build and initiate HardFiles in Docker:
 ```
-docker compose up -d --build
+docker compose up -d
 ```
 
 #### 3. Default Port:
diff --git a/docker-compose.yml b/docker-compose.yml
@@ -1,7 +1,7 @@
 services:
   hardfiles:
     container_name: hardfiles
-    build: .
+    image: git.supernets.org/supernets/hardfiles:latest
     volumes:
       - "$PWD/files:/app/files"
       - "$PWD/www:/app/www"