Improve documentation and usability of running a Tiled server#1313
Open
danielballan wants to merge 32 commits intobluesky:mainfrom
Open
Improve documentation and usability of running a Tiled server#1313danielballan wants to merge 32 commits intobluesky:mainfrom
danielballan wants to merge 32 commits intobluesky:mainfrom
Conversation
901f52c to
fabf738
Compare
| USER root | ||
| COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh | ||
| RUN chmod +x /usr/local/bin/docker-entrypoint.sh | ||
| ENTRYPOINT ["docker-entrypoint.sh"] |
Contributor
There was a problem hiding this comment.
Won't chowning the volume from within the container change the ownership of the files outsdie the container, those mounted on /storage?
Member
Author
There was a problem hiding this comment.
Yes. Same as would happen with PG or Redis.
It matters that this "storage" is all Tiled-controlled: the catalog, Zarr and Parquet data written by the server, etc. Any externally managed data would have to be separately managed, and explicitly/manually set with compatible permissions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
docker-compose.ymlstands up PG (catalog and storage databases) and Redis.catalog:section is config makes doing standard setups much simple (no need for complextrees:).pydantic-settings, which adds automatic support for using env vars to specify any config, not just some. This simplifiesdocker-composeetc.Needs:
trees:(1) advanced routing involving read replicas, (2) experimentation with alternative catalog implementations, (3) legacy management (databroker)Checklist