├── .env ├── 3rd-Party.txt ├── Dockerfile ├── Dockerfile.ami ├── LICENSE.txt ├── README.md ├── assets └── tools │ ├── wait-for-it.license │ └── wait-for-it.sh ├── config └── mysql │ ├── conf.d │ └── onlyoffice.cnf │ └── docker-entrypoint-initdb.d │ └── onlyoffice-initdb.sql ├── docker-compose.groups.yml ├── docker-compose.workspace.yml ├── docker-compose.workspace_enterprise.yml ├── hooks ├── build └── push └── run-community-server.sh /.env: -------------------------------------------------------------------------------- 1 | REPO=onlyoffice4ami 2 | STATUS='' 3 | TAG=latest 4 | -------------------------------------------------------------------------------- /3rd-Party.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/3rd-Party.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.ami: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/Dockerfile.ami -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/README.md -------------------------------------------------------------------------------- /assets/tools/wait-for-it.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/assets/tools/wait-for-it.license -------------------------------------------------------------------------------- /assets/tools/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/assets/tools/wait-for-it.sh -------------------------------------------------------------------------------- /config/mysql/conf.d/onlyoffice.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/config/mysql/conf.d/onlyoffice.cnf -------------------------------------------------------------------------------- /config/mysql/docker-entrypoint-initdb.d/onlyoffice-initdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/config/mysql/docker-entrypoint-initdb.d/onlyoffice-initdb.sql -------------------------------------------------------------------------------- /docker-compose.groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/docker-compose.groups.yml -------------------------------------------------------------------------------- /docker-compose.workspace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/docker-compose.workspace.yml -------------------------------------------------------------------------------- /docker-compose.workspace_enterprise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/docker-compose.workspace_enterprise.yml -------------------------------------------------------------------------------- /hooks/build: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | export TAG=$DOCKER_TAG 3 | docker-compose -f ${BUILD_FILE}.yml build 4 | -------------------------------------------------------------------------------- /hooks/push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/hooks/push -------------------------------------------------------------------------------- /run-community-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ONLYOFFICE/Docker-CommunityServer/HEAD/run-community-server.sh --------------------------------------------------------------------------------