1 Star 3 Fork 0

Rainbow/小说驿站

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
docker-compose.yml 636 Bytes
一键复制 编辑 原始数据 按行查看 历史
Rainbow 提交于 2024-06-10 17:02 . add-docker
version: "3.8"
services:
db:
image: mysql:5.7
restart: always
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_general_ci
environment:
MYSQL_DATABASE: novel_station
MYSQL_ROOT_PASSWORD: novel_station_password
volumes:
- ./data.sql:/sql_scripts/NovelStation/data.sql
web:
build: .
command: bash -c "python3 ./wait_for_mysql.py db 3306 root novel_station_password novel_station && python3 manage.py migrate && python3 manage.py runserver 0.0.0.0:9000"
restart: always
ports:
- "9000:9000"
depends_on:
- db
cache:
image: redis:latest
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/kill-my-teammates-first/novael-station.git
git@gitee.com:kill-my-teammates-first/novael-station.git
kill-my-teammates-first
novael-station
小说驿站
master

搜索帮助