|
@@ -1,14 +1,13 @@
|
|
|
version: '3.7'
|
|
|
services:
|
|
|
web:
|
|
|
- image: nginx
|
|
|
+ image: alenx/walle-web:2.0
|
|
|
container_name: walle-nginx
|
|
|
hostname: nginx-web
|
|
|
ports:
|
|
|
+ # 如果宿主机80端口被占用,可自行修改为其他port(>=1024)
|
|
|
+ # 0.0.0.0:要绑定的宿主机端口:docker容器内端口80
|
|
|
- "80:80"
|
|
|
- volumes:
|
|
|
- - ./fe/:/opt/walle-web/:ro
|
|
|
- - ./gateway/nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
|
links:
|
|
|
- python
|
|
|
depends_on:
|
|
@@ -18,17 +17,12 @@ services:
|
|
|
restart: always
|
|
|
|
|
|
python:
|
|
|
- image: alenx/walle-web
|
|
|
+ image: alenx/walle-python:2.0
|
|
|
container_name: walle-python
|
|
|
hostname: walle-python
|
|
|
volumes:
|
|
|
- - $PWD/:/opt/walle-web/
|
|
|
- /tmp/walle/codebase/:/tmp/walle/codebase/
|
|
|
- environment:
|
|
|
- WALLE_DB_HOST: db:3306
|
|
|
- WALLE_DB_USER: user
|
|
|
- WALLE_DB_PASSWORD: password
|
|
|
- command: bash -c "/bin/bash /opt/walle-web/admin.sh upgrade && python /opt/walle-web/waller.py"
|
|
|
+ command: bash -c "/bin/bash /opt/walle-web/admin.sh migration && python /opt/walle-web/waller.py"
|
|
|
expose:
|
|
|
- "5000"
|
|
|
links:
|
|
@@ -50,8 +44,6 @@ services:
|
|
|
command: --default-authentication-plugin=mysql_native_password
|
|
|
environment:
|
|
|
MYSQL_ROOT_PASSWORD: walle
|
|
|
- MYSQL_USER: user
|
|
|
- MYSQL_PASSWORD: password
|
|
|
MYSQL_DATABASE: walle
|
|
|
volumes:
|
|
|
- /data/walle/mysql:/var/lib/mysql
|