In the base of my spice, I ran
docker build -t quay.io/elasticsuite/spice:burton-develop .
Then created a tmp directory within the spice and created a Dockerfile
FROM quay.io/elasticsuite/skillet:develop COPY --from=quay.io/elasticsuite/spice:burton-develop /spice /skillet/lib/client
within said directory I ran
docker build -t quay.io/elasticsuite/skillet:burton-develop .
once complete, I pushed up the image
docker push quay.io/elasticsuite/skillet:burton-develop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
𝗕𝗮𝘀𝗶𝗰 𝗗𝗮𝘁𝗮-𝗦𝘁𝗿𝘂𝗰𝘁𝘂𝗿𝗲𝘀 | |
𝘌𝘷𝘦𝘳𝘺𝘰𝘯𝘦 𝘴𝘩𝘰𝘶𝘭𝘥 𝘬𝘯𝘰𝘸 𝘩𝘰𝘸 𝘵𝘩𝘦𝘺 𝘸𝘰𝘳𝘬, 𝘸𝘩𝘦𝘯 𝘵𝘰 𝘶𝘴𝘦 𝘵𝘩𝘦𝘮, 𝙝𝙤𝙬 𝙩𝙤 𝙞𝙢𝙥𝙡𝙚𝙢𝙚𝙣𝙩 𝙩𝙝𝙚𝙢 | |
• Array | |
• Set | |
• Hashmap | |
• Linked List | |
• Stack | |
• Queue | |
• Tree |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'csv' | |
# file = File.open('products_global_2.csv') | |
# file = File.rename(file, 'products_global_2-rename.csv') | |
# csv = CSV.open('products_global_2.csv', 'rb') | |
general_colors = %w[grey gray purple pink silver gold brown burlywood khaki navy beige indigo lime | |
red blue green orange yellow black white maroon tan turquoise sienna steel] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Version: 1 | |
Name: mult1.1 -UN | |
Mods: | |
- Id: Core | |
Name: Core | |
- Id: 1752864297 | |
Name: Multiplayer | |
- Id: 1629973374 | |
Name: Multiplayer Compatibility | |
- Id: 1507748539 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<ModsConfigData> | |
<version>1.0.2408 rev747</version> | |
<activeMods> | |
<li>Core</li> | |
<li>__LocalCopy_Mod_Manager_-18-10</li> | |
<li>__LocalCopy_Startup_impact_-20-10</li> | |
<li>__LocalCopy_HugsLib_-20-10</li> | |
<li>__LocalCopy_JecsTools_-20-10</li> | |
<li>__LocalCopy_Miscellaneous_CORE__-20-10</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
arr = ["198J-AJZ", "196T-9GI", "196W-9GY", "197A-9HP", "197B-9HV", "197C-9IA", "197R-9IY", "197D-9IB", "197E-9ID", "197S-9IZ", "197T-9J1", "197F-9IE", "197H-9IH", "197Z-A6G", "197U-9J5", "197V-9J6", "198C-9KV", "198D-9KY", "198K-9KZ", "198E-9L8", "198H-9LM"] | |
arr.each do |str| | |
p str | |
Image.where(original_filename: /.*#{str}_.*(?!87).*[SA]_01.png/).each do |img| | |
img.delete | |
end | |
end | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hello <%= @user.name %>, | |
<%= @custom_catalog.author.name %> has shared a catalog, <%= @custom_catalog.name %>, with you. | |
You can access this catalog from the dashboard under the "Custom Catalogs" section. | |
The catalog will be identified with a link icon to indicate its a shared catalog. | |
The shared catalog is read only. If you modify it, a new copy will be created for you | |
that is not linked to the shared catalog. | |
One of your assigned dealers, <%= @document.customer_name %> (<%= @document.author.name %>) has submitted a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install docker | |
mkdir -p /mongodb/data | |
docker run --name mongo -p 27017:27017 -d -v /mongodb:/data mongo:latest bash -c 'mongod --logpath /data/mongodb.log --logappend --dbpath /data/data --storageEngine=wiredTiger' | |
mkdir -p /redis | |
docker run --name redis -p 6379:6379 -d -v /redis:/data redis:3.0.7 bash -c 'redis-server --dir /data --appendonly yes' | |
mkdir /elastic | |
docker run --name elastic --user elasticsearch -p 9200:9200 -p 9300:9300 -d -v /elastic:/data elasticsearch:1.4.5 bash -c 'elasticsearch --cluster.name elastic_cluster --node.name elastic01 --path.data /data/elastic-data --path.logs /data/elastic-logs' |
NewerOlder