Support intro
Sorry to hear you’re facing problems. 
The community help forum (help.nextcloud.com) is for home and non-enterprise users. Support is provided by other community members on a best effort / “as available” basis. All of those responding are volunteering their time to help you.
If you’re using Nextcloud in a business/critical setting, paid and SLA-based support services can be accessed via portal.nextcloud.com where Nextcloud engineers can help ensure your business keeps running smoothly.
Getting help
In order to help you as efficiently (and quickly!) as possible, please fill in as much of the below requested information as you can.
Before clicking submit: Please check if your query is already addressed via the following resources:
- Official documentation (searchable and regularly updated)
- How to topics and FAQs
- Forum search
(Utilizing these existing resources is typically faster. It also helps reduce the load on our generous volunteers while elevating the signal to noise ratio of the forums otherwise arising from the same queries being posted repeatedly).
Some or all of the below information will be requested if it isn’t supplied; for fastest response please provide as much as you can. ![]()
The Basics
- Nextcloud stable on docker on windows 11
Summary of the issue you are facing:
I have a staging container made of sqllite. There I added an admin. Admin added some apps and disabled few others. Admin also added few documents in the skeleton directory.
Then I push it to docker hub using commit and then push.
Then I create a demo container from the image in docker hub.
When the admin logins, it is Not a copy of staging. It contains only the default apps and no additional skeleton documents.
Please help-
Docker compose for staging:
services:
app-staging:
image: nextcloud:stable
container_name: nc-app-staging
restart: always
ports:
- 2000:80 # This port should be same number as that present in caddyfile
volumes:
- nc-vol-staging:/var/www/html
environment:
OVERWRITEPROTOCOL: https
volumes:
nc-vol-staging:
Docker hub
docker login
docker commit nc-app-staging myname/nc-staging:latest
docker push myname/nc-staging:latest