docker-compose.yml 247 字节
Newer Older
杨龙伟 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
version: '3.8'

volumes:
  lottery_log:
services:
  lottery:
    container_name: lottery
    expose:
      - 28458
    ports:
      - "28458:8888"
    volumes:
      - "lottery_log:/var/log"
    image: "panda1024/lottery:v0.3"
    restart: always