├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml ├── mysql ├── Dockerfile ├── init-xiuno.sql └── my.cnf ├── nginx ├── Dockerfile ├── default.conf └── entrypoint.sh ├── php-fpm ├── Dockerfile └── php.ini └── xiunobbs-4.0.4.zip /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | xiuno/ 3 | 4 | mysql/data/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/mysql/Dockerfile -------------------------------------------------------------------------------- /mysql/init-xiuno.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/mysql/init-xiuno.sql -------------------------------------------------------------------------------- /mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/mysql/my.cnf -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/nginx/default.conf -------------------------------------------------------------------------------- /nginx/entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | chmod 777 -R /var/www/html 4 | 5 | exec gosu root "$@" 6 | 7 | -------------------------------------------------------------------------------- /php-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/php-fpm/Dockerfile -------------------------------------------------------------------------------- /php-fpm/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/php-fpm/php.ini -------------------------------------------------------------------------------- /xiunobbs-4.0.4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayfalling/xiuno-docker/HEAD/xiunobbs-4.0.4.zip --------------------------------------------------------------------------------