Docker搭建walle 2.0

  • docker-composer 文件
$ cat walle-run.yml
# docker version:  18.06.0+
# docker-compose version: 1.23.2+
# OpenSSL version: OpenSSL 1.1.0h
version: "3.7"
services:
  web:
    image: alenx/walle-web:2.1
    container_name: walle-nginx
    hostname: nginx-web
    ports:
      # 如果宿主机80端口被占用,可自行修改为其他port(>=1024)
      # 0.0.0.0:要绑定的宿主机端口:docker容器内端口80
      - "8081:80"
    volumes:
      - /data/walle-2.0/walle-nginx/:/etc/nginx/
    depends_on:
      - python
    networks:
      - walle-net
    restart: always

  python:
    image: alenx/walle-python:2.1
    container_name: walle-python
    hostname: walle-python
    env_file:
      # walle.env需和docker-compose在同级目录
      - ./walle.env
    command: bash -c "cd /opt/walle_home/ && /bin/bash admin.sh migration &&  python waller.py"
    expose:
      - "5000"
    volumes:
      - /data/walle-2.0/walle-python/plugins/:/opt/walle_home/plugins/
      - /data/walle-2.0/walle-python/codebase/:/opt/walle_home/codebase/
      - /data/walle-2.0/walle-python/logs/:/opt/walle_home/logs/
      - /root/.ssh:/root/.ssh/
    depends_on:
      - db
    networks:
      - walle-net
    restart: always

  db:
    image: mysql:5.7
    container_name: walle-mysql
    hostname: walle-mysql
    env_file:
      - ./walle.env
    command: [ '--default-authentication-plugin=mysql_native_password', '--character-set-server=utf8mb4', '--collation-server=utf8mb4_unicode_ci']
    ports:
      - "3307:3306"
    expose:
      - "3306"
    volumes:
      # - /data/walle-2.0/walle-mysql/mysql.cnf:/etc/mysql/conf.d/my.cnf
      - /data/walle-2.0/walle-mysql/data:/var/lib/mysql
    networks:
      - walle-net
    restart: always

networks:
  walle-net:
    driver: bridge
  • walle.env 文件
# Set MySQL/Rails environment
MYSQL_USER=root
MYSQL_PASSWORD=wallepasswd
MYSQL_DATABASE=walle
MYSQL_ROOT_PASSWORD=wallepasswd
MYSQL_HOST=db
MYSQL_PORT=3306
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容