3 Star 4 Fork 1

Gitee 极速下载/ohmyform

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/ohmyform/ohmyform
克隆/下载
docker-compose.yml 821 Bytes
一键复制 编辑 原始数据 按行查看 历史
# WARNING!! This is to build from source
# to use a version that is prebuilt copy one of the entries from the examples folder!
version: "3"
services:
redis:
image: redis
ohmyform:
build: .
environment:
CREATE_ADMIN: "TRUE"
MAILER_URI: smtp://mail:1025
DATABASE_DRIVER: postgres
DATABASE_URL: postgresql://root:root@db:5432/ohmyform
LOGIN_NOTE: "login with root:root!"
SECRET_KEY: 12345
links:
- db
- redis
- mail
ports:
- "5200:3000"
depends_on:
- db
- redis
mail:
image: mailhog/mailhog
ports:
- "5051:8025"
db:
image: postgres:10-alpine
volumes:
- ./pg_data:/var/lib/postgresql/data
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: root
POSTGRES_DB: ohmyform
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/ohmyform.git
git@gitee.com:mirrors/ohmyform.git
mirrors
ohmyform
ohmyform
master

搜索帮助