docker-compose.yml 343 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 # change this to your user id
  11. - PGID=1000 # change this to your group id
  12. - STORAGE_SECRET="change-this-to-yor-own-private-secret"