You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
395 B

1 year ago
version: "3"
services:
demoapp:
build: .
container_name: my-name # 容器名建议用注册的app名称
command: gunicorn --bind 0.0.0.0:8080 demoAppDjango.wsgi:application
volumes:
- .:/code
- ./my-name/gunicorn:/var/log/gunicorn # 日志文件应该统一管理
networks:
- shixiong_shixiong_net
networks:
shixiong_shixiong_net:
external: true