1
0

docker-compose.yml 224 B

12345678910111213
  1. version: "3.9"
  2. services:
  3. app:
  4. image: zauberzeug/nicegui:latest
  5. ports:
  6. - "3000:8080"
  7. proxy:
  8. image: nginx:1.16.0-alpine
  9. ports:
  10. - "80:80"
  11. volumes:
  12. - ./nginx.conf:/etc/nginx/nginx.conf