jason c4b087a454
opencloud / release-opencloud (push) Waiting to run
📖 Standardize AI.md; move project spec to IDEA.md 📖
AI.md is now the standardized application-image specification from
claudemgr/docker/CASJAYSDEVDOCKER.md (PARTs 0–8: critical rules, repo
model, template system and OCI label canon, tooling, .env.scripts,
runtime system, README layout, CI/CD, verification gates). The former
AI.md — the OpenCloud project specification — moved wholesale to
IDEA.md, which did not previously exist, so nothing was lost.

- AI.md: replaced with the CASJAYSDEVDOCKER.md master template
- IDEA.md: new — carries the OpenCloud project specification moved out of AI.md
2026-08-14 15:23:42 -04:00
2026-05-12 20:07:56 -04:00
🗃️ Update codebase 🗃️
2026-08-02 20:43:55 -04:00
🦈🏠🐜 Initial Commit 🐜🦈🏠
2025-11-21 16:44:17 -05:00
2026-05-12 20:07:56 -04:00
2026-05-12 20:07:56 -04:00
2026-05-12 20:07:56 -04:00
2026-08-14 15:23:42 -04:00
2026-05-12 20:07:56 -04:00
2026-08-14 15:23:42 -04:00
2026-05-12 20:07:56 -04:00

👋 Welcome to opencloud 🚀

opencloud README

Install my system scripts

 sudo bash -c "$(curl -q -LSsf "https://github.com/systemmgr/installer/raw/main/install.sh")"
 sudo systemmgr --config && sudo systemmgr install scripts  

Automatic install/update

dockermgr update opencloud

Install and run container

dockerHome="/srv/$USER/docker/casjaysdevdocker/opencloud/opencloud/latest/rootfs"
mkdir -p "/srv/$USER/docker/opencloud/rootfs"
git clone "https://github.com/dockermgr/opencloud" "$HOME/.local/share/CasjaysDev/dockermgr/opencloud"
cp -Rfva "$HOME/.local/share/CasjaysDev/dockermgr/opencloud/rootfs/." "$dockerHome/"
docker run -d \
--restart always \
--privileged \
--name casjaysdevdocker-opencloud-latest \
--hostname opencloud \
-e TZ=${TIMEZONE:-America/New_York} \
-v "$dockerHome/data:/data:z" \
-v "$dockerHome/config:/config:z" \
-p 80:80 \
casjaysdevdocker/opencloud:latest

via docker-compose

version: "2"
services:
  ProjectName:
    image: casjaysdevdocker/opencloud
    container_name: casjaysdevdocker-opencloud
    environment:
      - TZ=America/New_York
      - HOSTNAME=opencloud
    volumes:
      - "/srv/$USER/docker/casjaysdevdocker/opencloud/opencloud/latest/rootfs/data:/data:z"
      - "/srv/$USER/docker/casjaysdevdocker/opencloud/opencloud/latest/rootfs/config:/config:z"
    ports:
      - 80:80
    restart: always

Get source files

dockermgr download src casjaysdevdocker/opencloud

OR

git clone "https://github.com/casjaysdevdocker/opencloud" "$HOME/Projects/github/casjaysdevdocker/opencloud"

Build container

cd "$HOME/Projects/github/casjaysdevdocker/opencloud"
buildx 

Authors

🤖 casjay: Github 🤖
casjaysdevdocker: Github Docker

S
Description
Repo for opencloud
Readme
212 KiB
Languages
Shell 96.7%
Dockerfile 3.3%