Docker-Django project deployment

1, pull Ubuntu system image to create the container

sudo docker run -it --name=gaofei_followUpVisitDemo_v1.0_20191231 -p 9019:8000 -p 9018:15627 -p 9017:9017 -p 9016:9016 -v /home/qinghua-user2/project_gaofie/7_sf:/tmp registry.cn-beijing.aliyuncs.com/gaofei_cangku/tfgpu1.13.1-ubuntu16.04-cuda10.0-v1.0:1.0.0 /bin/bash

 

(2) Installation nodejs, yarn Services

https://www.jianshu.com/p/f4dbe17bda2e

Yarn ubuntu mounted (installed in the system)

https://blog.csdn.net/aboutmn/article/details/87259762

 

2, mirrored pull neo4j

Pull the latest neo4j mirror

docker pull neo4j

Run Neo4j container

docker run -it --name=neo4j_v1.0_D20200102 -d -p 7474:7474 -p 7687:7687  -v /docker_data/neo4j_data:/data neo4j:latest /bin/bash 

Open Neo4j browser management interface

http://localhost:7474

 

3, pulling the mirror mysql

https://blog.csdn.net/feifeiyechuan/article/details/102708167

Account password: root 123456

 

4, Django + cerey service starts

https://blog.csdn.net/feifeiyechuan/article/details/103902453

 

Published 84 original articles · won praise 149 · views 50000 +

Guess you like

Origin blog.csdn.net/feifeiyechuan/article/details/103800946