anyone maintaining code for docker containers? #2334
Replies: 2 comments 2 replies
-
The short answer is that running the The majority of code is in this repository, but supporting folks running the latest version of Another thing to note is that we pretty frequently have large feature branches in this repository, so even |
Beta Was this translation helpful? Give feedback.
-
closing this topic, by getting current situation described in the above bnewbold's comment. |
Beta Was this translation helpful? Give feedback.
-
I'm using latest codes to get running bluesky on containers in my env.
I found that features can work with dev-env as expected but not with container.
through investigations, I found gaps, such as belows, between code of dev-env and those of containers.
by filling these gaps one by one, the containers got starting to work little by little, but not all features yet.
I guess it need to find all the gaps and feed them back into the container codes to get the full features working on the containers.
found gaps regarding atproto/services/bsky/*.js
it lacks data-plane, bsync, RepoSubscription in atproto/services/bsky/*.js but dev-env has those:
atproto/packages/dev-env/src/bsky.ts
Lines 43 to 51 in f45eef3
atproto/packages/dev-env/src/bsky.ts
Lines 88 to 93 in f45eef3
RepoSubscription uses BackgroundQueue but it is not exported then BackgroundQueue cannot be involved from container.
in dev-env. it is imported as below, with source accessing style.
atproto/packages/dev-env/src/bsky.ts
Line 9 in f45eef3
found gaps on timing of creating DB table( by migrations/*):
earlier creactions are done not just for bsky but also ozone and others.
atproto/packages/dev-env/src/bsky.ts
Lines 75 to 83 in f45eef3
Beta Was this translation helpful? Give feedback.
All reactions