1. Docker is sunsetting Free Team organizations
- Posted by ghaberek (admin) Mar 15, 2023
- 828 views
If you're unaware, a couple years ago I set up a Docker organization to host images we could use to bootstrap Euphoria apps or to build Euphoria itself. And then yesterday I got the email below.
This probably doesn't mean much to most people. I know Bruce is using these images for his work on the Exercism track and I'm using them internally to test builds on my own system.
The Dockerfiles are hosted here on GitHub so those won't be going away. I will work on adding a workflow to publish the images to GitHub instead. I guess I have 30 days to get that working.
The linked FAQ does suggest their "Docker-sponsored Open Source (DSOS) program" as an option but that seems unfavorable to our size and simple use cases, plus the internet tells me that experience is pretty awful.
Docker is sunsetting Free Team organizations
Free Team organizations are a legacy subscription tier that no longer exists.
This tier included many of the same features, rates, and functionality as a
paid Docker Team subscription.
After reviewing the list of accounts that are members of legacy Free Team
organizations, we’ve identified yours as potentially being one of them.
If you own a legacy Free Team organization, access to paid features —
including private repositories — will be suspended on April 14, 2023 (11:59
pm UTC). Upgrade your subscription before April 14, 2023 to continue
accessing your organization.
If you don’t upgrade to a paid subscription, Docker will retain your
organization data for 30 days, after which it will be subject to deletion. During
that time, you will maintain access to any images in your public repositories,
though rate limitations will apply. At any point during the 30-day period, you
can restore access to your organization account if you upgrade to a paid
subscription. Visit our FAQ for more information.
-Greg
2. Re: Docker is sunsetting Free Team organizations
- Posted by katsmeow Mar 15, 2023
- 787 views
If you're unaware, a couple years ago I set up a Docker organization
I got
Something went wrong! We've logged this error and will review it as soon as we can. If this keeps happening, please file a support ticket with the below ID. Error ID: fJKW5PO_Bm
I can/will/wanna remain clueless, but thought you might want this data, under the heading of "user friendly".
Kat
3. Re: Docker is sunsetting Free Team organizations
- Posted by axtens_bruce Mar 16, 2023
- 687 views
I don't know what effect it will have on what I'm doing. I've simply taken the Dockerfile file and modified it for use in the Exercism enviroment, viz
FROM ubuntu LABEL maintainer="Greg Haberek <ghaberek@gmail.com>" ADD euphoria-4.1.0-Linux-x64-57179171dbed.tar.gz /usr/local/ ENV PATH=/usr/local/euphoria-4.1.0-Linux-x64/bin:$PATH RUN apt-get update && \ apt-get install jq coreutils -y && \ apt-get purge --auto-remove -y && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* WORKDIR /opt/test-runner COPY . . ENTRYPOINT ["/opt/test-runner/bin/run.sh"]
-Bruce
4. Re: Docker is sunsetting Free Team organizations
- Posted by ghaberek (admin) Mar 16, 2023
- 667 views
I don't know what effect it will have on what I'm doing. I've simply taken the Dockerfile file and modified it for use in the Exercism enviroment, viz
FROM ubuntu LABEL maintainer="Greg Haberek <ghaberek@gmail.com>" ADD euphoria-4.1.0-Linux-x64-57179171dbed.tar.gz /usr/local/ ENV PATH=/usr/local/euphoria-4.1.0-Linux-x64/bin:$PATH RUN apt-get update && \ apt-get install jq coreutils -y && \ apt-get purge --auto-remove -y && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* WORKDIR /opt/test-runner COPY . . ENTRYPOINT ["/opt/test-runner/bin/run.sh"]
That works and avoids the problem of the OpenEuphoria organization going away. But in the long term you could make that FROM openeuphoria/euphoria:latest and jump right to WORKDIR, etc.
-Greg
5. Re: Docker is sunsetting Free Team organizations
- Posted by ghaberek (admin) Mar 17, 2023
- 641 views
An update from Docker, for what it's worth: https://www.docker.com/blog/we-apologize-we-did-a-terrible-job-announcing-the-end-of-docker-free-teams/.
Regardless, I'm still planning to move image hosting to GitHub. Docker's Sponsored Open Source Program contains a lot of non-free language and that doesn't sit well with me, especially for a project our size.
-Greg
6. Re: Docker is sunsetting Free Team organizations
- Posted by axtens_bruce Mar 25, 2023
- 551 views
Now they've completely backflipped
-Bruce
7. Re: Docker is sunsetting Free Team organizations
- Posted by ghaberek (admin) Mar 25, 2023
- 512 views
Now they've completely backflipped
On one hand, it's good to see a company responding to its community's negative reaction. On the other hand, it's pretty crappy that companies get so far as to publish these changes without considering the blow back. Shows they're out of touch.
-Greg