| 1234567891011121314151617181920212223 |
- version: "3"
- services:
- natter-nginx-cf:
- command: -e /opt/cf-redir.py -p 18888
- volumes:
- - ./cf-redir.py:/opt/cf-redir.py
- environment:
- - TZ=Asia/Shanghai
- network_mode: host
- image: nattertool/natter
- restart: always
- depends_on:
- - nginx
- nginx:
- volumes:
- - ./html:/usr/share/nginx/html
- ports:
- - "18888:80"
- environment:
- - TZ=Asia/Shanghai
- image: nginx
- restart: always
|