gonzalo commented on issue #9042:
URL: https://github.com/apache/superset/issues/9042#issuecomment-763524627
in case you're using that docker image you should bind a location /etc
location on your host and place there the superset_config file
In my case this is part of my docker-compose.yml (for a swarm deployment)
```
version: '3.3'
services:
dashboard:
image: amancevice/superset:0.38.0
volumes:
- superset-data:/var/lib/superset
- /etc/localtime:/etc/localtime:ro
- /xxxx/xxxx/superset-dashboard/etc:/etc/superset
```
and in my host I have a /xxxx/xxxx/superset-dashboard/etc/superset_config.py
file with these contents
```
SESSION_COOKIE_SAMESITE = 'None' # One of [None, 'Lax', 'Strict']
SESSION_COOKIE_SECURE = True
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]