• Latest
  • Trending
  • All
  • News
  • Lifestyle
How to Deal with Docker Container Persistence and Storage thumbnail

How to Deal with Docker Container Persistence and Storage

July 29, 2020
A year after Hurricane Helene, communities still wait for federal reimbursements thumbnail

A year after Hurricane Helene, communities still wait for federal reimbursements

September 26, 2025
Why some memories stick while others fade thumbnail

Why some memories stick while others fade

September 26, 2025
Republicans and NJ gov. candidate Jack Ciattarelli hammer Mikie Sherrill over asset gains while in Congress: ’She’s tripled her net worth’ thumbnail

Republicans and NJ gov. candidate Jack Ciattarelli hammer Mikie Sherrill over asset gains while in Congress: ’She’s tripled her net worth’

September 24, 2025
States rally to offset fracturing of federal healthcare agencies: ‘Diseases don’t see state lines’ thumbnail

States rally to offset fracturing of federal healthcare agencies: ‘Diseases don’t see state lines’

September 22, 2025
Jared Kushner Is Now A Billionaire thumbnail

Jared Kushner Is Now A Billionaire

September 18, 2025
Airbnb Launches New Feature to Enhance Water Safety Awareness for Guests thumbnail

Airbnb Launches New Feature to Enhance Water Safety Awareness for Guests

September 18, 2025
Researchers successfully heal rats’ broken spines  thumbnail

Researchers successfully heal rats’ broken spines 

September 16, 2025
Democrats Cannot Just Buy Back the Working Class thumbnail

Democrats Cannot Just Buy Back the Working Class

September 16, 2025
Kalshi ‘ready to defend’ prediction markets amid Massachusetts lawsuit thumbnail

Kalshi ‘ready to defend’ prediction markets amid Massachusetts lawsuit

September 14, 2025
Republicans move to change Senate rules to speed confirmation of some nominees thumbnail

Republicans move to change Senate rules to speed confirmation of some nominees

September 11, 2025
The most troubling feature of the job market is how thinly spread gains are, top economist says — ‘this only happens when the economy is in recession’ thumbnail

The most troubling feature of the job market is how thinly spread gains are, top economist says — ‘this only happens when the economy is in recession’

September 9, 2025
What We Learned from Raiders' Road Win Over the Patriots thumbnail

What We Learned from Raiders’ Road Win Over the Patriots

September 8, 2025
  • About
  • Advertise
  • Privacy & Policy
  • Contact
  • Donate
Saturday, September 27, 2025
66 °f
Wellfleet
58 ° Tue
63 ° Wed
68 ° Thu
61 ° Fri
  • Login
  • Register
FREE Cape Cod News
DONATE
  • FREE Cape Cod News
  • Cape Cod News
  • News
    • News
    • Massachusetts
    • Breaking News
    • Cape Cod Weather
    • Storm Watch
    • Environment
  • Politics
    • democrats
    • republicans
  • Business
    • business
    • cryptocurrency
    • economy
    • money
    • Real Estate
    • Tech
  • World
  • Entertainment
  • Lifestyle
  • Photos
    • Orleans
    • Eastham
    • Wellfleet
    • Truro
    • Provincetown
    • Brewster
    • Chatham
  • Videos
No Result
View All Result
Free Cape Cod News
No Result
View All Result
  • FREE Cape Cod News
  • Cape Cod News
  • News
  • Politics
  • Business
  • World
  • Entertainment
  • Lifestyle
  • Photos
  • Videos
Home News Environment

How to Deal with Docker Container Persistence and Storage

FREE Cape Cod News by FREE Cape Cod News
July 29, 2020
in Environment
Reading Time: 6 mins read
Donate
0
How to Deal with Docker Container Persistence and Storage thumbnail
634
SHARES
1.4k
VIEWS
Share on TwitterShare on Facebook

Docker logo.

Docker is a containerization service, designed for running apps in their own environment on any system. It’s intended to be platform-agnostic, but if you need to store data on a disk, that can be done with volume and bind mounts.

Use an External Database or Object Store

This is the method that most people will recommend. Storing state as a file on disk isn’t in line with Docker’s model, and while it can be done, it’s always best to consider—do you really need to?

For example, let’s say you’re running an a web application in Docker that needs to store data in a database. It doesn’t make much sense to run MySQL in a Docker container, so you should instead deploy MySQL on RDS or EC2, and have the Docker container connect to it directly. The Docker container is entirely stateless like it is intended to be; it can be stopped, started, or hit with a sledgehammer, and a new one can be spun up in its place, all without data loss. Using IAM permissions, this can be accomplished securely, entirely within your VPC.

If you really need to store files, such as user uploaded photos and video, you really should be using AWS’s Simple Storage Service (S3). It’s much cheaper than EBS-based storage, and far cheaper compared to EFS storage, which is your primary choice for a shared filesystem for ECS containers. Rather than storing a file on disk, you upload directly to S3. This method also allows you to run additional processing using Lambda functions on uploaded content, such as compressing images or video, which can save you a lot on bandwidth costs.

Simple Solution: Mount a Drive to a Container

Docker has two ways to achieve persistence: volume mounts, and bind mounts. Bind mounts allow you to mount a particular location on your server’s filesystem to a location inside the Docker container. This link can be read-only, but also read/write, where files written by the Docker container will persist on disk.

You can bind individual host directories to target directories in the Docker container, which is useful, but the recommended method is to create a new “volume,” managed by Docker. This makes it easier to backup, transfer, and share volumes between different instances of containers.

A word of caution: If you don’t have direct access to the server you’re running Docker on, as is the case with managed deployments like AWS’s Elastic Container Service (ECS) and Kubernetes, you’ll want to be careful with this. It’s tied to the server’s own disk space, which is usually ephemeral. You’ll want to use an external file store like EFS to achieve real persistence with ECS (more on that later).

However, bind and volume mounts do work well if you’re simply using Docker to run an easy installation of an app on your server, or just want quick persistence for testing purposes.  Either way, the method of creating volumes will be the same regardless of where you’re storing them.

You can create a new volume from the command line with:

docker volume create nginx-config

And then, when you go to run your Docker container, link it to the target in the container with the --mount flag:

docker run -d 
--name devtest 
--mount source=nginx-config,target=/etc/nginx 
nginx:latest

If you run docker inspect , you’ll see the volume listed under the Mounts section.

If you’re using Docker Compose, the setup is easy as well. Simply add a volumes entry for each container service you have, then map a volume name to a location in the guest. You’ll also need to provide a list of volumes in a top-level volumes key for Compose to provision.

version: "3.0"
services:
  web:
    image: nginx:latest
    ports:
      - "80:80"
    volumes:
      - nginx-config:/etc/nginx/
volumes:
  nginx-config:

This will create the volume automatically for this Compose. If you’d like to use a premade volume from outside Compose, specify external: true in the volume configuration:

volumes:
  cms-content:
    external: true

If you’d like to instead simply do a bind mount and not bother with volumes, simply enter in a path name in place of the volume name, and forego defining the volume names.

version: "3.0"
services:
  web:
    image: nginx:latest
    ports:
      - "80:80"
    volumes:
      - /docker/nginx-config/:/etc/nginx/

You can read Docker’s full documentation on using volumes with Compose if your use case requires something more specific than this.

For Managed Deployments, Use a Shared File System (AWS EFS)

If you’re deploying on AWS ECS, you won’t be able to use a normal bind or volume mount, because once you shut down the container, you probably won’t be running on the same machine the next time you start it up, defeating the purpose of persistence.

However, you can still achieve persistence using another AWS service—Elastic File System (EFS). EFS is a shared network file system. You can mount it to multiple EC2 servers, and the data accessed will be synced across all of them. For example, you could use this to host the static content and code for your website, then run all of your worker nodes on ECS to handle the actual serving of your content. This gets around the restriction of not storing data on disk, because the volume mount is bound to an external drive that persists across ECS deployments.

To set this up, you’ll need to create an EFS file system. This is fairly straightforward, and can be done from the EFS Management Console, but you’ll want to make a note of the volume ID as you’ll be needing it to work with the volume.

If you need to manually add or change files in your EFS volume, you can mount it to any EC2 instance. You’ll need to install amazon-efs-utils:

sudo yum install -y amazon-efs-utils

And then mount it with the following command, using the ID:

sudo mount -t efs fs-12345678:/ /mnt/efs

This way, you can directly view and edit the contents of your EFS volume as if it was another HDD on your server. You’ll want to make sure you have nfs-utils installed for this all to work properly.

Next, you’ll have to hook up ECS to this volume. Create a new task definition in the ECS Management Console. Scroll to the bottom, and select “Configure Via JSON.” Then, replace the empty “volumes” key with the following JSON, adding the “family” key at the end:

"volumes": [
        {
            "name": "efs-demo",
            "host": null,
            "dockerVolumeConfiguration": {
                "autoprovision": true,
                "labels": null,
                "scope": "shared",
                "driver": "local",
                "driverOpts": {
                    "type": "nfs",
                    "device": ":/",
                    "o": "addr=fs-XXXXXX.efs.us-east-1.amazonaws.com,nfsvers=4.1,rsize=1048576,wsize=1048576,hard,timeo=600,retrans=2,noresvport"
                }
            }
        }
    ],
"family":"nginx",

Replace fs-XXXXXX.efs.us-east-1.amazonaws.com with your EFS volume’s real address. You should see a new volume:

ecs new volume

You can use this in your container definition as a mount point. Select “Add Container” (or edit an existing one), and under “Storage And Logging,” select the newly created volume and specify a container path.

add mount point

Save the task definition, and when you launch a cluster with this new definition, all of the containers will be able to access your shared file system.

Tags: environment

FREE Digital Newspaper Subscription!
Sign up for your free digital subscription. The FREE Cape Cod News

Unsubscribe
FREE Cape Cod News

FREE Cape Cod News

Free Cape Cod News is what's happening in the Cape Cod, U.S and World & what people are talking about right now. Local newspaper. Stay in the know. Subscribe to get notified about our latest news.

Related Posts

States rally to offset fracturing of federal healthcare agencies: ‘Diseases don’t see state lines’ thumbnail
Environment

States rally to offset fracturing of federal healthcare agencies: ‘Diseases don’t see state lines’

by FREE Cape Cod News
September 22, 2025
NEC develops robot control technology using AI to achieve safe, efficient autonomous movement even at sites with many obstacles thumbnail
Environment

NEC develops robot control technology using AI to achieve safe, efficient autonomous movement even at sites with many obstacles

by FREE Cape Cod News
August 22, 2025
Wi-Fi 7 in industrial environments: mistakes, impact, and fixes thumbnail
Environment

Wi-Fi 7 in industrial environments: mistakes, impact, and fixes

by FREE Cape Cod News
July 23, 2025
Risk-factor changes could prevent the majority of sudden cardiac arrests thumbnail
Environment

Risk-factor changes could prevent the majority of sudden cardiac arrests

by FREE Cape Cod News
April 30, 2025
Load More
Please login to join discussion

Follow Us on Twitter

FREE Cape Cod News - Your source for local Cape Cod news, latest breaking U.S. and World news. Every day, all day. Subscribe for your favorite categories.

  • Trending
  • Comments
  • Latest
A year after Hurricane Helene, communities still wait for federal reimbursements thumbnail

A year after Hurricane Helene, communities still wait for federal reimbursements

September 26, 2025
Why some memories stick while others fade thumbnail

Why some memories stick while others fade

September 26, 2025
The Blasch house, Wellfleet

Wellfleet – The Rise and Fall of a House on Cape Cod: A Stark Reminder of Erosion’s Toll

February 25, 2025
A year after Hurricane Helene, communities still wait for federal reimbursements thumbnail

A year after Hurricane Helene, communities still wait for federal reimbursements

0
Why some memories stick while others fade thumbnail

Why some memories stick while others fade

0
Republicans and NJ gov. candidate Jack Ciattarelli hammer Mikie Sherrill over asset gains while in Congress: ’She’s tripled her net worth’ thumbnail

Republicans and NJ gov. candidate Jack Ciattarelli hammer Mikie Sherrill over asset gains while in Congress: ’She’s tripled her net worth’

0
A year after Hurricane Helene, communities still wait for federal reimbursements thumbnail

A year after Hurricane Helene, communities still wait for federal reimbursements

September 26, 2025
Why some memories stick while others fade thumbnail

Why some memories stick while others fade

September 26, 2025
Republicans and NJ gov. candidate Jack Ciattarelli hammer Mikie Sherrill over asset gains while in Congress: ’She’s tripled her net worth’ thumbnail

Republicans and NJ gov. candidate Jack Ciattarelli hammer Mikie Sherrill over asset gains while in Congress: ’She’s tripled her net worth’

September 24, 2025

FREE Cape Cod News On Twitter

Today’s News

  • A year after Hurricane Helene, communities still wait for federal reimbursements September 26, 2025
  • Why some memories stick while others fade September 26, 2025
  • Republicans and NJ gov. candidate Jack Ciattarelli hammer Mikie Sherrill over asset gains while in Congress: ’She’s tripled her net worth’ September 24, 2025
  • States rally to offset fracturing of federal healthcare agencies: ‘Diseases don’t see state lines’ September 22, 2025
  • Jared Kushner Is Now A Billionaire September 18, 2025
FREE Cape Cod News

Copyright © 2024 Free Cape Cod News

Navigate Site

  • About
  • Advertise
  • Privacy & Policy
  • Contact
  • Donate

Follow Us

Welcome Back!

Login to your account below

Forgotten Password? Sign Up

Create New Account!

Fill the forms below to register

All fields are required. Log In

Retrieve your password

Please enter your username or email address to reset your password.

Log In

Add New Playlist

No Result
View All Result
  • FREE Cape Cod News
  • Cape Cod News
  • News
    • News
    • Massachusetts
    • Breaking News
    • Cape Cod Weather
    • Storm Watch
    • Environment
  • Politics
    • democrats
    • republicans
  • Business
    • business
    • cryptocurrency
    • economy
    • money
    • Real Estate
    • Tech
  • World
  • Entertainment
  • Lifestyle
  • Photos
    • Orleans
    • Eastham
    • Wellfleet
    • Truro
    • Provincetown
    • Brewster
    • Chatham
  • Videos
  • Login
  • Sign Up

Copyright © 2024 Free Cape Cod News