├── .github └── workflows │ ├── clean_image.yml │ ├── develop-aliyun.yml │ ├── develop.yml │ ├── merge_upstream.yml │ ├── overleaf-aliyun.yml │ ├── overleaf.yml │ ├── quay_sync_test.yml │ └── texlive_sync_dockerhub.yml ├── .gitignore ├── README.md ├── aliyun-internal ├── docker-compose.image.yml ├── docker-compose.yml ├── init.sh └── up.sh ├── dev-patches └── web-dockerfile │ └── Dockerfile ├── image └── launchpad.png ├── prod-local-fs ├── README.md ├── docker-compose.image.yml ├── docker-compose.yml ├── init.sh └── up.sh ├── prod-s3 ├── .gitignore ├── README.md ├── docker-compose.image.yml ├── docker-compose.yml ├── init.sh └── up.sh ├── test-codespace ├── Readme.md ├── docker-compose.image.yml ├── docker-compose.yml ├── init.sh └── up.sh └── test-local ├── README.md ├── docker-compose.image.yml ├── docker-compose.yml ├── init.sh └── up.sh /.github/workflows/clean_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/.github/workflows/clean_image.yml -------------------------------------------------------------------------------- /.github/workflows/develop-aliyun.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/.github/workflows/develop-aliyun.yml -------------------------------------------------------------------------------- /.github/workflows/develop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/.github/workflows/develop.yml -------------------------------------------------------------------------------- /.github/workflows/merge_upstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/.github/workflows/merge_upstream.yml -------------------------------------------------------------------------------- /.github/workflows/overleaf-aliyun.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/.github/workflows/overleaf-aliyun.yml -------------------------------------------------------------------------------- /.github/workflows/overleaf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/.github/workflows/overleaf.yml -------------------------------------------------------------------------------- /.github/workflows/quay_sync_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/.github/workflows/quay_sync_test.yml -------------------------------------------------------------------------------- /.github/workflows/texlive_sync_dockerhub.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/.github/workflows/texlive_sync_dockerhub.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | 3 | secrets.env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/README.md -------------------------------------------------------------------------------- /aliyun-internal/docker-compose.image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/aliyun-internal/docker-compose.image.yml -------------------------------------------------------------------------------- /aliyun-internal/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/aliyun-internal/docker-compose.yml -------------------------------------------------------------------------------- /aliyun-internal/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/aliyun-internal/init.sh -------------------------------------------------------------------------------- /aliyun-internal/up.sh: -------------------------------------------------------------------------------- 1 | # /bin/bash 2 | 3 | export CURRENT_DIR=$(pwd) 4 | 5 | docker compose up -d -------------------------------------------------------------------------------- /dev-patches/web-dockerfile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/dev-patches/web-dockerfile/Dockerfile -------------------------------------------------------------------------------- /image/launchpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/image/launchpad.png -------------------------------------------------------------------------------- /prod-local-fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/prod-local-fs/README.md -------------------------------------------------------------------------------- /prod-local-fs/docker-compose.image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/prod-local-fs/docker-compose.image.yml -------------------------------------------------------------------------------- /prod-local-fs/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/prod-local-fs/docker-compose.yml -------------------------------------------------------------------------------- /prod-local-fs/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/prod-local-fs/init.sh -------------------------------------------------------------------------------- /prod-local-fs/up.sh: -------------------------------------------------------------------------------- 1 | # /bin/bash 2 | 3 | export CURRENT_DIR=$(pwd) 4 | 5 | docker-compose up -d -------------------------------------------------------------------------------- /prod-s3/.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | 3 | secrets.env -------------------------------------------------------------------------------- /prod-s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/prod-s3/README.md -------------------------------------------------------------------------------- /prod-s3/docker-compose.image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/prod-s3/docker-compose.image.yml -------------------------------------------------------------------------------- /prod-s3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/prod-s3/docker-compose.yml -------------------------------------------------------------------------------- /prod-s3/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/prod-s3/init.sh -------------------------------------------------------------------------------- /prod-s3/up.sh: -------------------------------------------------------------------------------- 1 | # /bin/bash 2 | 3 | export CURRENT_DIR=$(pwd) 4 | 5 | docker-compose up -d -------------------------------------------------------------------------------- /test-codespace/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/test-codespace/Readme.md -------------------------------------------------------------------------------- /test-codespace/docker-compose.image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/test-codespace/docker-compose.image.yml -------------------------------------------------------------------------------- /test-codespace/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/test-codespace/docker-compose.yml -------------------------------------------------------------------------------- /test-codespace/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/test-codespace/init.sh -------------------------------------------------------------------------------- /test-codespace/up.sh: -------------------------------------------------------------------------------- 1 | # /bin/bash 2 | 3 | export CURRENT_DIR=$(pwd) 4 | 5 | docker-compose up -d -------------------------------------------------------------------------------- /test-local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/test-local/README.md -------------------------------------------------------------------------------- /test-local/docker-compose.image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/test-local/docker-compose.image.yml -------------------------------------------------------------------------------- /test-local/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/test-local/docker-compose.yml -------------------------------------------------------------------------------- /test-local/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayaka-notes/overleaf/HEAD/test-local/init.sh -------------------------------------------------------------------------------- /test-local/up.sh: -------------------------------------------------------------------------------- 1 | # /bin/bash 2 | 3 | export CURRENT_DIR=$(pwd) 4 | 5 | docker-compose up -d --------------------------------------------------------------------------------