mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-02 03:37:40 +02:00
update discuz
This commit is contained in:
parent
cb4b4fca5d
commit
727f7a100d
@ -3,8 +3,37 @@ discuz
|
||||
|
||||
[Discuz!][1] is an internet forum software written in PHP and developed by a chinese company.
|
||||
|
||||
:warning: Discuz! is free of charge for private uses. A license that allows commercial use costs about ¥3000.
|
||||
:-1: Discuz! is not a open source software.
|
||||
|
||||
Stable release: X3.2 (September 23, 2013; 2 years ago).
|
||||
- Initial release: March 2002
|
||||
- Stable release: X3.2 (September 23, 2013; 2 years ago)
|
||||
- License: proprietary (costs about ¥3000)
|
||||
|
||||
:+1: Try open source softwares:
|
||||
|
||||
- [discourse](https://hub.docker.com/r/discourse/discourse/)
|
||||
- [nodebb](https://hub.docker.com/r/vimagick/phpbb/)
|
||||
- [phpbb](https://hub.docker.com/r/vimagick/phpbb/)
|
||||
|
||||
## docker-compose.yml
|
||||
|
||||
```
|
||||
discuz:
|
||||
image: vimagick/discuz
|
||||
ports:
|
||||
- "8000:80"
|
||||
links:
|
||||
- mysql
|
||||
restart: always
|
||||
|
||||
mysql:
|
||||
image: mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=root
|
||||
- MYSQL_DATABASE=discuz
|
||||
- MYSQL_USER=discuz
|
||||
- MYSQL_PASSWORD=discuz
|
||||
restart: always
|
||||
```
|
||||
|
||||
[1]: http://www.discuz.net
|
||||
|
16
discuz/docker-compose.yml
Normal file
16
discuz/docker-compose.yml
Normal file
@ -0,0 +1,16 @@
|
||||
discuz:
|
||||
image: vimagick/discuz
|
||||
ports:
|
||||
- "8000:80"
|
||||
links:
|
||||
- mysql
|
||||
restart: always
|
||||
|
||||
mysql:
|
||||
image: mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=root
|
||||
- MYSQL_DATABASE=discuz
|
||||
- MYSQL_USER=discuz
|
||||
- MYSQL_PASSWORD=discuz
|
||||
restart: always
|
Loading…
Reference in New Issue
Block a user