docker-compose.yml 396 字节
Newer Older
H
huohuanhuan 已提交
1 2
version: '3'
services:
何延龙 已提交
3
  skywalking:
H
heyanlong 已提交
4
    image: apache/skywalking-oap-server:VERSION
何延龙 已提交
5 6
    ports:
      - "11800:11800"
H
Add fpm  
heyanlong 已提交
7
      - "12800:12800"
何延龙 已提交
8 9 10
  mysql:
    image: mysql:5
    restart: always
H
huohuanhuan 已提交
11
    environment:
何延龙 已提交
12
      MYSQL_ROOT_PASSWORD: 111111
H
huohuanhuan 已提交
13
    ports:
何延龙 已提交
14 15 16 17 18
      - "3306:3306"
    volumes:
      - ./init.sql:/docker-entrypoint-initdb.d/init.sql
  redis:
    image: redis
H
huohuanhuan 已提交
19
    ports:
何延龙 已提交
20
      - "6379:6379"