• Docker 基础

     · 2 min read  · Grape

    Dockerizing a Python Flask App

    Install nginx 1.27.2

    docker pull nginx:1.27.2
    docker pull python:3.13
    
    services:
      web:
        container_name: example_nginx
        image: nginx:1.27.2
        privileged: true
        ports:
          - 80:80
          - 443:443
        volumes:
          - "$PWD/html:/usr/share/nginx/html:rw"
          - "$PWD/conf/conf.d:/etc …