tfoldi / tableau-server-docker

Dockerfile for Tableau Server on Linux - Single Node
BSD 3-Clause "New" or "Revised" License
115 stars 76 forks source link

Teableau server preference persistence #5

Open raajankannadasan opened 6 years ago

raajankannadasan commented 6 years ago

Hi,

How can we do the preference persistence ? For example, The mentioned user preference or meta should be persistence while removing existing container and running new instance of tableau-server

  1. Published workbook
  2. Newly created user
  3. Newly created My view of workbook.

Thanks in advance

tfoldi commented 5 years ago

you can save an image anytime, even after initialization. check my blog post's pro tipp section with docker commit.

https://databoss.starschema.net/tableau-server-linux-docker-container/

let me know if this helps

reevery commented 5 years ago

The traditional approach would be to have the config on the host, and mount it into the container rather than copy in the dockerfile. This would be much better practice... Everyone would use Tamas's image but -v ./config:/config their config into the container.

tfoldi commented 5 years ago

Hmm, I can make this happen easily