1
0

docker-compose.yml 282 B

12345678910111213
  1. version: "3.9"
  2. services:
  3. nicegui:
  4. image: zauberzeug/nicegui:latest
  5. ports:
  6. - 8080:8080
  7. volumes:
  8. - ./app:/app # mounting local app directory
  9. environment:
  10. - PUID=1000
  11. - PGID=1000
  12. - STORAGE_SECRET="change-this-to-yor-own-private-secret"