Docker compose volume driver. yml file, define it under the volumes key.

Docker compose volume driver. I have this docker-compose file: version: "3.
Docker compose volume driver For easy management and version control, define your volumes in a docker-compose. One option is to create a NFS that is reachable by all your nodes and declare the volume with type: nfs. Docker supports various volume drivers that extend the capabilities of volumes. Select the volume driver that best Jun 8, 2016 · I'm on docker version 1. If you want to map a file or directory (like in your last docker-compose file), you don't need to specify anything in the volumes: section. Jul 2, 2021 · Docker Compose File v3. The host's volume name and path are accepted by the --volume (or -v) flag, whereas the driver type is accepted by the --volume-driver flag. Be sure to follow existing best practices for operating your storage driver (filesystem or volume manager) on top of your shared storage system. Any advice on getting the Z: drive folders to mount properly would be great, thanks. まずdocker-compose. g. yml file Nov 22, 2021 · I would like to create a volume in my docker-compose. not files/directories. I have searched more documents through google but, unfortunately, i don’t have find none. Volume drivers are plugins that allow users to store volume data in external storage systems, such as cloud storage or network-attached storage. Working docker-compose. But nutanix driver can not recognize the ‘_’ character. volumes: foo: driver: local driver_opts: type: "tmpfs" o: "o=size=100m,uid=1000" device: "tmpfs" There are also additional Filesystem specific mount options that might be helpful for you. Jul 1, 2022 · 1- What is the default size of a docker volume ? I couldn’t find an answer anywhere. Note Sep 4, 2023 · 1. Note. FILESYSTEM-SPECIFIC MOUNT OPTIONS. yml file. yml up -d Creating network "test_default" with the default driver Creating test_test_1 $ docker exec -it test_test_1 /bin/sh / # cat /data/hello. Aug 4, 2020 · Either create your volume first and then use it in docker run commands: docker volume create \ --driver local \ --opt type=cifs \ --opt o=username={smbuser},password={smbpass},uid={UID for mount},gid={gid for mount},vers=3. The docker compose specification document isn't great here as it assumes you know about the docker volume set of commands (which work like the docker network, docker image, etc. This way the volume is persistent but no size is specified volumes: {data} And if I do this, the volume has the right size but data are not persistent after reboot volumes: data: driver_opts: type: none device: path o: bind, size=50G I also tried with other types Hi, I'm running Docker Desktop on a Windows 10 machine, where I'm trying to set up a container that can access data on a network share. The next step is to use the just installed plugin to create a volume. yml volumes: harbordb: driver: nutanix harborreg: driver: nutanix harborjob: driver: nutanix The “deploy_” will be added in front of the volume name I want. Mar 3, 2021 · In the above example the share can be mounted as the named volume videos in your docker-compose file. Aug 5, 2018 · 最近教えてもらった技なのですが、Docker ComposeのVolumesにはNFSストレージをマウントすることができるようです。やってみたので、忘れないようにメモ。ちなみに、今回はGrowiと… To define an external volume in your Docker Compose file A Docker Compose file is a YAML configuration file that defines services, networks, and volumes for multi-container Docker applications. I want to have an ability to pass (override) the war archive to be deployed by some which resides on the host machine. Create a data volume using a volume driver - docker volume create command. The plugin image is built around Alpine Linux. war file deployed in webapps directory. Define Volumes in Docker Compose. I think the confusion lies in the fact that docker run --mount vs docker volume create seems to be inconsistent, because of how unclear Docker documentation quality is First, you can create the named volume directly and use it as an external volume in compose, or as a named volume in a docker run or docker service create command. There are four possible options to mount any volume: Relative Path; Absolute Path; Docker Volume Default Path; Docker Volume with Absolute Path Aug 29, 2024 · I tried a while ago, and it doesn’t seem to work with local or bind volume. One way to manage volume data in Docker Compose is to use volume drivers. yml --driver specifies the volume driver name--opt Sets driver specific options. 0 \ --opt device=//Share1/FolderMix \ foldermix or declare it in a docker-compose. Below is a part of docker-compose. Initial set-up Sep 7, 2024 · @tamashika he named volume part is correct for default named volumes (as in non-parameterized). When you create a container with a tmpfs mount, the container can create files outside the container's writable layer. Not what you're looking for, but this is the easy option for many: Because the Blockbridge volume driver runs as a container, this is as simple as scaling the driver with Docker Compose up to the number of nodes in the swarm. $ docker volume create --driver=flocker volumename Legacy versions 2. Since compose version 3 removed volumes_from, I'm trying to create a named top-level volume that can be used for every service, but I don't see how to use a relative path. I’m trying to mount volume that is an NFS. But my problem is that I can’t see the Openhab gogs with the log viewer and in the second step I have to be able to edit the openhab config files with vscode. yml: Sep 18, 2024 · CIFS volume: volumes: your_shared_folder_logs: driver_opts: type: cifs o: username=${USER} Comprehensive Guide: Installing Docker and Docker Compose on Windows, Linux, and macOS. Example: Sep 18, 2021 · 1 docker-compose up -d 2 [+] Running 3 /3 3 ⠿ Network data-vol_default Created 0. ymlの設定を反映させる&サーバー起動 One other question: what is the proper way to use a 'local' volume with a remote docker-machine setup in docker-compose v3? Previously, docker-machine was doing some magic to copy local files (e. yaml up no service selected UPDATE: Define a dummy service like this: Jan 7, 2019 · Is it possible to create a CIFS volume (using the local driver) by passing it a credentials file instead of specifying the username/password inline? I am aware that other solutions exist like docker-volume-netshare but I don’t want to rely on 3rd party for this project and the Docker documentation states it supports similar commands as the Linux mount command so I’ve been trying to go down Aug 26, 2016 · Dear all: I want to create a volume via Nutanix volume driver by using compose file v2. To make this fully work, I need to use the IP address rather than the host name for the device. my_volume: driver: local driver_opts: #type: &quot;&quot; #device: &quot;&quot; o: &quot;uid=${UID:-&hellip; driver. Use the correct volume driver: Docker supports a variety of volume drivers, including local, nfs, and third-party plugins. Compose V2 has replaced it and is now integrated into all current Docker Desktop versions. This only work on docker-compose version '2': version: '2' services: srv1: image: sometag volumes_from: - data srv2: image: sometag volumes_from: - data data: image: sometag volumes: - . 11. Nov 9, 2023 · If I have a docker volume defined in my compose file such as volumes: nas_mount: driver: local name: nas_mount driver_opts: type: cifs device: //192. See: Specifying top-level and service-level volumes in compose file - #2 by meyay Aug 10, 2020 · The volumes are indeed local(one local volume on each node that has a container mounting that volume). Each container for a service joins the Jul 14, 2021 · First change driver to driver: local, and let compose create the volume. yml file: version: "3. When you declare a volume as external in docker compose, it means that the volume has been previously created and you are just referencing it in the compose file. It works! Conclusion? It looks like relative paths simply don't work. That doesn't seem to be the case in v3 anymore. txt hello volume / # exit Jul 14, 2017 · This is how I got it done for my case inside . Jul 24, 2017 · Why docker compose accepts empty network definitions like this? docker; $ docker volume ls DRIVER VOLUME NAME local Feb 10, 2024 · Hi everyone, I have a Docker Compose addon on an OMV server. I guess they are given to the linux mount command when the container starts up. For instance, you can use drivers for Amazon EBS, NFS, or Ceph. In order to update a volume, it needs to be removed, and re-created by compose. Previously I had: With Docker Compose, a single command can set up your application and the needed dependencies. The solution provided here is to use a single plugin and use the Oct 29, 2023 · Here’s my docker-compose. I'm attempting to deploy a PosgreSQL Docker container in Azure. If the driver is not available, Compose returns an error and doesn’t deploy the application. To create a named volume in the docker-compose. o: bind manually creates a bind mount that attaches part of the filesystem somewhere else; this is the mechanic behind Docker's bind-mount system. \docker-compose. 168. Which actual (default) options are used there? With other words, is there an equivalent “verbose” commandline like so: docker volume create --driver local \\ --opt type=??? \\ --opt o=??? \\ --opt device=??? \\ test I’d like to know, which type/device-specific options there Effective July 2023, Compose V1 stopped receiving updates and is no longer in new Docker Desktop releases. 20. 2. These drivers can allow you to store volumes on external storage systems, cloud storage, or manage volumes in a more sophisticated way. Here you can read more about driver specific options and docker volume create Oct 16, 2024 · Use the --volume and --volume-driver options on the docker container run command to grant a container access to a volume. You can also specify the volume driver and options if necessary. yml file, define it under the volumes key. /docker-compose. The docker-compose. Also, I created the Docker Azure context The docker-compose file https://docs. If the driver is not available, Compose returns an error and doesn't deploy the application. image/image container_name: sabnzbd volumes: - nas_mount Jan 5, 2019 · I'm aware that plugins like docker-volume-netshare exist and I've used them in the past but for this project I am constrained to the local driver only. To create a Docker volume that maps to a directory on an external disk, you need to use the docker volume create command with the appropriate options. env # To use a code volume create the volume mapping an existing folder like this and pass the value of <volume_name> below # docker volume create --driver local --opt type=none --opt device=<full_path_to_folder> --opt o=bind <volume_name> PROJECT_VOLUME_CODE=myproject_code Apr 5, 2023 · Use Docker Compose: Docker Compose makes it easier to manage containers, volumes, and networks. x of the Compose file format were merged into the Compose Specification. Dec 11, 2019 · Dockerボリュームを表示してみると、docker-compose. Oct 24, 2017 · Persistence of data in Docker. The following examples use the vieux/sshfs volume driver, first when creating a standalone volume, and then when starting a container which creates a new volume. Since this is for local development, the absolute path can be different among developers. Aug 4, 2021 · The volumes: section in a docker-compose file specify docker volumes, i. The solution provided here is to use a single plugin and Now that my container works, I docker-compose down and change the docker-compose file again. Jan 3, 2025 · Introduction to Docker Compose. . In file '. The windowsfilter storage driver only works on file systems formatted with NTFS. Docker Compose is a tool designed for defining and running multi-container Docker applications. By contrast, when you use a volume, a new directory is created within Docker's storage directory on the host machine, and Docker manages that directory's contents. Feb 14, 2024 · Note: volume configurations are immutable. For most use case, no configuring the windowsfilter storage driver is not necessary. , you’ll typically use the volumes key under the service that needs access to the Mar 1, 2021 · Trying to create ChirpStack Docker-Compose container in Azure cloud: docker login azure docker context create aci myacicontext docker context use myacicontext docker compose --file . yml file with custom mount options (uid set to the host user). In my case, I had to manually delete them before the container would use the included volume info. When you create a volume using docker volume create, or when you start a container which uses a not-yet-created volume, you can specify a volume driver. esdata2: driver: local. If you have run the docker-compose during test without specifying the volume info, I think that you will have automatically created volumes which persist. in the second docker-compose. e. It is implemented in versions 1. If you're running Docker on Linux, you have a third option: tmpfs mounts. For more information, see Migrate to Compose V2. 8" volumes: neonfs: driver: local driver_opts: type: nfs &hellip; 搭建cvat/server 时, 需要将多个镜像公用的volume绑定在本地路径下, 可在docker-compose. /Dockerfile ports: - "80:80" environment: - FlexDebug=on volumes: - cifs_mount:/root/data Mar 31, 2021 · Now we can mount the S3 bucket using the volume driver like below to test the mount. I've tried everything. Each storage driver handles the implementation differently, but all drivers use stackable image layers and the copy-on-write (CoW) strategy. com/compose/compose-file/#/volumes-volume-driver shows various ways to mount host sub-directories relative to the compose I recently upgraded my Docker Toolbox on Windows 10, and now my volume mounts no longer work. We have covered how to create a Docker volume, list and inspect Docker volumes, use a Docker volume in a container, and use a Docker volume in a Docker Compose file. Like this: docker-compose. It can also be used in conjunction with the external property. Use a volume driver. yml volume custom driver correctly as well. 4' services: dealproducer: image: MyService:latest build: Feb 25, 2016 · $ docker-compose -f docker-compose. e. compose is as follows version: '3. yml looks like the below and I am trying to follow the compose file from the docker registry documentation here. By using other Volume plugins, e. yml. 0) I don't know how to do it, the command has no effect: docker compose -f volumes. The first docker-compose in your post uses such a volume. After I had the Docker Compose plugin running, I set up the following containers. Here is what I have tried. Mount Volumes To Containers. 27. Apr 18, 2023 · Hi, when I create a volume (docker volume create test) and inspect it, it has an “Options” field of “null”. This means the name of the volume used to lookup the actual volume on the platform is set separately from the name used to refer to it within the Compose file: Mar 19, 2023 · You could use a fixed name like myvolume and deploy your compose project with docker compose --project-name a up -d and get the volume a_myvolume, then deploy the same compose file with another project name like docker compose --project-name b up -d and would get the volume name b_myvolume. 0. yml). To that end, I created in Azure a storage account and a file share to store a Docker volume. version: '3' services: jenkins: build: context: . It is possible to parameterize a named volume, so that it binds a specific folder: volumes: my-data: driver: local driver_opts: type: none o: bind device: /opt/arbitrary/path/data When you use a bind mount, a file or directory on the host machine is mounted from the host into a container. com,rw \ --opt device=:/path/to/dir \ foo Apr 3, 2016 · With the local volume driver comes the ability to use arbitrary mounts; by using a bind mount you can achieve exactly this. Here’s an example command: Aug 3, 2020 · Finally, how could you setup a docker-compose. If the detail matters, I'm trying to set up Jellyfin, to access a media folder on a Synology NAS. As opposed to volumes and bind mounts, a tmpfs mount is temporary, and only persisted in the host memory. 0 \… Be aware that declared volumes are immutable once created. For setting up a named volume that gets mounted into /srv/db-data, your docker-compose. We can then test that the volume works with docker run -v mydockervolume:/data alpine ls /data. Default and available values are platform specific. This file allows you to declare the services, networks, and volumes needed for your Advanced Volume Management Volume Drivers. But I've been seeing docker-compose files posted online using this same shared volume relative path notation. 1. Use Docker volumes if you need multiple containers to have shared access to the exact same data. yml would look like this: Mar 7, 2016 · In order to keep track of the volumes used by docker-compose, I'd like to use named volumes. Apr 29, 2022 · docker-compose -f volumes. The purpose of this project is to provide a Docker Volume Driver for Mounting Amazon S3 Buckets using Mountpoint S3. 10, the installed nfs server serves version 4 and you exported the folder /postgresq_data, and your docker host ip is allowed to access the export, then it should be correct. By using volume drivers, users can ensure that volume data is backed up and replicated to prevent data loss. Then switch it back to driver: azure_file. , Specifies which volume driver should be used. 0s 6 7 docker volume ls 8 DRIVER VOLUME NAME 9 local data-vol_mydata 10 local dbdata Dec 6, 2022 · Hi All, unfortunally i have another question for you. example. You only need storage_account_name and share_name. UPDATE 2: To verify this, I tried checking the permissions on the shared volume and I noticed that it has no write permissions also. I can successfully create and use a CIFS volume with the local driver in the traditional sense (passing it the username/password inline) but now I want to pass the credentials via a credentials file. The driver-specific options you can use after the address in the o flag can be found in the nfs manual page. This is a linux based distro. yaml up Creating volume "a_volume" with local driver Creating volume "b_volume" with local driver Attaching to Using docker-compose v2 (2. yml below), the volumes are not mounted properly and are empty folders when I connect to the container via the CLI. OR allow dockercompse to auto create the volume so just remove "external: true" Jan 21, 2017 · I have a docker-compose. You will also get to grips with the fundamentals of Docker volumes and network, along with Compose commands, their purpose, and use cases. In addition, if you improperly built this on the swarm you’d have to go to the worker and docker volume rm from there to make sure it gets recreated. yml configuration. Nov 2, 2021 · I am trying to add a windows file share as a volume in a Linux docker container my docker. tmpfs: $ docker volume create --driver local \ --opt type=tmpfs \ --opt device=tmpfs \ --opt o=size=100m,uid=1000 \ foo btrfs: docker volume create --driver local \ --opt type=btrfs \ --opt device=/dev/sda2 \ foo So, these options is really In many cases, Docker can work on top of these storage systems, but Docker doesn't closely integrate with them. 0 and above (also known as Compose V2) of the Docker Compose CLI. My problem is that I can’t manage to link volumes that I need in several containers. I have this docker-compose file: version: "3. By default docker just manages the volume to host mapping for you. You don't need to specify account key. 2. Here are some examples of commonly used options: nfsvers=3 or nfsvers=4 to specify the NFS version Dec 2, 2022 · Hi All, i’m try to create a docker-compose file that mount external volumes with samba. yml file: Apr 19, 2018 · Question, how do I make this host shared volume writable? I checked the shared volume using. Nov 12, 2017 · The reason I say partially is I only got it to work in docker-compose but not in docker stack deploy. This works great for 'normal' volumes like version: 2 services: example-app: volume: -name Oct 15, 2022 · You should in that official document find other opts for other kinds of driver like tmpfs, btrfs etc. 8" services: web: build: dockerfile: . You can find most things about docker volumes here. My solution turned out to be: docker volume rm <long volume string> – Nov 28, 2021 · When I edit the volumes to point to locations on Z: (e. app source code) from my local environment to my remote docker machine. I put the relative path back in, and "compose up". The Compose Specification on Docker Docs is the Docker Compose implementation. The idea it to provide a simple way to mount S3 buckets to Docker containers. docker volume inspect source_data and I noticed that it has no write functionality. docker. 10/data Is there a way to use it in a service, but only a subpath of the volume root if that makes sense. It streamlines deployment and management, enhancing efficiency. To give a container access to a volume, use the --volume and --volume-driver flags on the docker container run command. I'm able to create named docker volumes: docker volume create --name my-jenkins-volume Than I'm able to connect my container with the named-volume with the -v option: Jan 16, 2019 · Use a volume driver. Almost the same question here: docker volume custom mount point. By default Compose sets up a single network for your app. local means the volumes esdata1 and esdata2 are created on the same Docker host where you run your container. By default, the volume drivers will automatically discover a Blockbridge simulator that is running in the swarm, and configure themselves. It's volume driver, equivalent to. yml: Jan 8, 2021 · Either create your volume first and then use it in docker run commands: docker volume create \ --driver local \ --opt type=cifs \ --opt o=username={smbuser},password={smbpass},uid={UID for mount},gid={gid for mount},vers=3. 2- I tried to specify the size of the volume (after deleting everything image/container/volume) using the driver_opts and using a docker compose file. vol-named. Mar 1, 2022 · externalオプションによってdocker-composeの外で既に作成済みのvolumeを使うことができるようになります。 services > app > volumesで指定するvolume名をexternal-test-volumeに修正しdocker-composeを実行すると、事前に作成したvolumeが有効であることが確認できます。 Jun 26, 2020 · The o: line matches options you'd pass to the ordinary Linux mount(8) command. In one of the containers there is a Tomcat server and it has some default . I would like to have a regular volume (like without specifying any driver nor driver_opts), just being able to specify the path on the host. Sep 18, 2016 · My docker-compose. 1" networks: lan_access: driver: bridge services: nodejs: image: node:18 environment: - VS_ALLOW_ADMIN=true - VS_ALLOW_CORS=true - VS_P&hellip; Apr 2, 2021 · If you experiement with the driver_opts in docker compose: You might need to delete the volume before each modification (sudo docker volume rm) – pico_prob Commented Sep 19, 2024 at 10:21 May 12, 2023 · Using a Docker volume in a Docker Compose file; Creating a Docker volume that maps to a directory on an external disk. Oct 16, 2023 · In this config, what does driver: local in top-level volumes mean? esdata1: driver: local. The --volume (or -v) flag accepts a volume name and path on the host, and the --volume-driver flag accepts a driver type. sets of commands). Specifies which volume driver should be used. To attach a volume to a container, use the volumes key within the service definition in the docker-compose. To define an nfs volume in a compose file do as described in this thread: volumes: name: driver: local driver_opts: type: nfs o: addr=192. docker create --name data-container -v /sessions tianon/true docker run --volume-from data-container -d myapp becomes this: docker volume create --name sessions docker run -v sessions:/sessions -d myapp Since you are using compose, you can define volumes using the volumes key. Configure the windowsfilter storage driver. One other question: what is the proper way to use a 'local' volume with a remote docker-machine setup in docker-compose v3? Previously, docker-machine was doing some magic to copy local files (e. Oct 14, 2023 · Is my configuration correct ? Assuming your nfs server has the ip 172. 5. This book starts with an overview of Docker Compose and its usage and then shows how to create an application. # create a reusable volume $ docker volume create --driver local \ --opt type=nfs \ --opt o=nfsvers=4,addr=nfs. References: docker volume create - Driver-specific options; Docker Compose File v3 - Volume Mar 2, 2021 · docker-compose. service: image: some. When to use bind mounts Mar 20, 2018 · And after inserting this into the docker-compose file you can use the s3 storage as volume. yaml up no service selected UPDATE: Define a dummy service like this: Sep 18, 2024 · CIFS volume: volumes: your_shared_folder_logs: driver_opts: type: cifs o: username=${USER} Comprehensive Guide: Installing Docker and Docker Compose on Windows, Linux, and macOS. /code-in-host:/code Aug 8, 2020 · mysqlコンテナにデータを格納するvolumeを作成; そのvolumeを「データを永続化するためだけの役割」であるvolumeコンテナとマウント; 実際にvolumeを確認. Here is the current mount path: volumes: - C:\Users\Joey\Desktop\backend:/var Dec 13, 2019 · But I am not sure of the driver: local, type: none and o: bind options. With Compose, you can manage multiple Docker containers using a single configuration file in YAML format (docker-compose. But it works like a charm with nfsv4. May 12, 2023 · By storing our Docker volumes on an external disk, we can improve performance and increase storage capacity. ymlにおけるvolumes:部分の記述の意味や、そもそもの**「ボリューム(Volume)」**の意味が理解できずに混乱したので、調べて分かったことを本記事にまとめておきます ️ The purpose of this project is to provide a Docker Volume Driver for Mounting Amazon S3 Buckets using S3FS. Each Docker storage driver is based on a Linux filesystem or volume manager. 0s 5 ⠿ Container data-vol_web_1 Started 1. In particular when i specify params, during execution i receive error: version: "3. x and 3. yml up Got error: cannot use ACI volume, required driver is “azure_file”, found “” What I do wrong? UPD Content of docker-compose. Aug 3, 2021 · It will install the volume driver plugin on the docker host. yml 中编辑volume属性: Running docker compose up uses the volume called my_volume_001. Apr 11, 2022 · volumes定義とは?トップレベルエレメントのvolumesについてまとめます。複数のserviceで共通して使用できる名前付きボリュームを定義できます。 Initial support for volume driver plugins ( #14659) Command-line changes. linux: image: {IMAGE} volumes: - s3data:/data Hope this helps some of you in the future! Cheers. ymlの 記述通りにDRIVERはlocalと表示されています。 $ docker volume ls DRIVER VOLUME NAME local wk-owncloud_backup local wk-owncloud_files local wk-owncloud_mysql local wk-owncloud_redis Docker uses storage drivers to manage the contents of the image layers and the writable container layer. 1,rw device: ":/path/to/dir" This is supported since at least composefile version 2 The windowsfilter driver uses Windows-native file system layers to for storing Docker layers and volume data on disk. $ docker volume create --driver vieux/sshfs \ -o sshcmd=test@node2:/home/test \ -o password=testpassword \ sshvolume Nov 7, 2021 · Hi! I would like to create a persistent volume after reboot with a specific size using docker-compose. 1s 4 ⠿ Container data-vol_db_1 Started 1. But I Oct 15, 2018 · The common scenario with compose volumes is to use the default named volume which maps to the local volume driver and places volumes in /var/lib/docker/volumes. Changes in the compose file are not reflected back to the volume configuration. docker run -ti --volume-driver = rexray/s3fs -v ${ aws -bucket-name } :/data ubuntu sleep infinity Enter fullscreen mode Dec 7, 2018 · Then I used volumes_from for other services to reuse the same volume and paths. jcka otcd mscmiw wbgx gsj rqgmpz dwpo ibyz wsmo nza
{"Title":"What is the best girl name?","Description":"Wheel of girl names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}