1. Docker is sunsetting Free Team organizations

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 said...

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

new topic     » topic index » view message » categorize

2. Re: Docker is sunsetting Free Team organizations

ghaberek said...

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

new topic     » goto parent     » topic index » view message » categorize

3. Re: Docker is sunsetting Free Team organizations

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

new topic     » goto parent     » topic index » view message » categorize

4. Re: Docker is sunsetting Free Team organizations

axtens_bruce said...

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

new topic     » goto parent     » topic index » view message » categorize

5. Re: Docker is sunsetting Free Team organizations

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

new topic     » goto parent     » topic index » view message » categorize

6. Re: Docker is sunsetting Free Team organizations

Now they've completely backflipped

-Bruce

new topic     » goto parent     » topic index » view message » categorize

7. Re: Docker is sunsetting Free Team organizations

axtens_bruce said...

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

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu