1 Star 0 Fork 549

不尴尬... / NocoBase

forked from NocoBase / NocoBase 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
docker-compose.yml 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
chenos 提交于 2022-05-25 21:00 . docs: update installation documentation
version: "3"
networks:
nocobase:
driver: bridge
services:
verdaccio:
image: verdaccio/verdaccio
networks:
- nocobase
environment:
VERDACCIO_PORT: ${VERDACCIO_PORT}
restart: always
ports:
- "${VERDACCIO_PORT}:${VERDACCIO_PORT}"
mysql:
image: mysql:8
environment:
MYSQL_DATABASE: ${DB_DATABASE}
MYSQL_USER: ${DB_USER}
MYSQL_PASSWORD: ${DB_PASSWORD}
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD}
restart: always
ports:
- "${DB_MYSQL_PORT}:3306"
networks:
- nocobase
postgres:
image: postgres:10
restart: always
networks:
- nocobase
command: postgres -c wal_level=logical
ports:
- "${DB_POSTGRES_PORT}:5432"
environment:
POSTGRES_USER: ${DB_USER}
POSTGRES_DB: ${DB_DATABASE}
POSTGRES_PASSWORD: ${DB_PASSWORD}
adminer:
image: nocobase/adminer
restart: always
networks:
- nocobase
ports:
- ${ADMINER_PORT}:8080
volumes:
- ./:/var/www/app
nocobase:
image: node:16-stretch-slim
networks:
- nocobase
command: [ "yarn", "start" ]
working_dir: /app
env_file: ./.env
volumes:
- ./:/app
expose:
- ${APP_PORT}
ports:
- "${APP_PORT}:${APP_PORT}"
TypeScript
1
https://gitee.com/shichen6/nocobase.git
git@gitee.com:shichen6/nocobase.git
shichen6
nocobase
NocoBase
main

搜索帮助