feat: update docs

This commit is contained in:
chenos 2024-01-13 18:36:11 +08:00
parent 8ab69500c7
commit 88dd3dd569
5 changed files with 42 additions and 8 deletions

View File

@ -0,0 +1,33 @@
version: "3"
networks:
nocobase:
driver: bridge
services:
app:
image: nocobase/nocobase:latest
networks:
- nocobase
depends_on:
- mariadb
environment:
- APP_KEY=your-secret-key # Replace it with your own app key
- DB_DIALECT=mariadb
- DB_HOST=mariadb
- DB_DATABASE=nocobase
- DB_USER=nocobase
- DB_PASSWORD=nocobase
- DB_TIMEZONE=+08:00
volumes:
- ./storage:/app/nocobase/storage
ports:
- "13000:80"
mariadb:
image: mariadb:latest
environment:
MYSQL_DATABASE: nocobase
MYSQL_USER: nocobase
MYSQL_PASSWORD: nocobase
MYSQL_ROOT_PASSWORD: nocobase
restart: always
networks:
- nocobase

View File

@ -4,24 +4,25 @@ networks:
driver: bridge
services:
app:
image: nocobase/nocobase:main
image: nocobase/nocobase:latest
networks:
- nocobase
depends_on:
- mysql
environment:
- APP_KEY=your-secret-key # Replace it with your own app key
- DB_DIALECT=mysql
- DB_HOST=mysql
- DB_DATABASE=nocobase
- DB_USER=nocobase
- DB_PASSWORD=nocobase
- LOCAL_STORAGE_BASE_URL=/storage/uploads
- DB_TIMEZONE=+08:00
volumes:
- ./storage:/app/nocobase/storage
ports:
- "13000:80"
mysql:
image: mysql:8
image: mysql:latest
environment:
MYSQL_DATABASE: nocobase
MYSQL_USER: nocobase

View File

@ -4,16 +4,16 @@ networks:
driver: bridge
services:
app:
image: nocobase/nocobase:main
image: nocobase/nocobase:latest
networks:
- nocobase
environment:
- APP_KEY=your-secret-key # Replace it with your own app key
- DB_DIALECT=postgres
- DB_HOST=postgres
- DB_DATABASE=nocobase
- DB_USER=nocobase
- DB_PASSWORD=nocobase
- LOCAL_STORAGE_BASE_URL=/storage/uploads
volumes:
- ./storage:/app/nocobase/storage
ports:

View File

@ -4,11 +4,11 @@ networks:
driver: bridge
services:
app:
image: nocobase/nocobase:main
image: nocobase/nocobase:latest
networks:
- nocobase
environment:
- LOCAL_STORAGE_BASE_URL=/storage/uploads
- APP_KEY=your-secret-key # Replace it with your own app key
volumes:
- ./storage:/app/nocobase/storage
ports:

View File

@ -134,7 +134,7 @@ class AppGenerator extends Generator {
APP_ENV: 'development',
DB_DIALECT: dbDialect,
APP_KEY: crypto.randomBytes(256).toString('base64'),
PLUGIN_PACKAGE_PREFIX: `@nocobase/plugin-,@nocobase/preset-,@${this.context.name}/plugin-`,
// PLUGIN_PACKAGE_PREFIX: `@nocobase/plugin-,@nocobase/preset-,@${this.context.name}/plugin-`,
...env,
},
};