docker-compose.yml 327 B

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