Skip to content

Commit 07b7246

Browse files
authored
Merge pull request #76 from bcbi/DilumAluthge-patch-2
Add some clarifying comments to the examples in the README
2 parents 0d6a85e + 88433ac commit 07b7246

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SimpleContainerGenerator"
22
uuid = "b8d349fb-717b-4aac-a9b1-e1da4219c631"
33
authors = ["Dilum Aluthge"]
4-
version = "1.0.0"
4+
version = "1.1.0"
55

66
[deps]
77
PackageCompiler = "9b87118b-4619-50d2-8e1e-99f35a4d4d9d"

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ mkpath("my_image_name")
2929
cd("my_image_name")
3030

3131
pkgs = [
32-
"Foo",
32+
"Foo", # Replace Foo, Bar, Baz, etc. with the names of actual packages that you want to use
3333
"Bar",
3434
"Baz",
3535
]
@@ -47,7 +47,7 @@ mkpath("my_image_name")
4747
cd("my_image_name")
4848

4949
pkgs = [
50-
(name = "Foo",),
50+
(name = "Foo",), # Replace Foo, Bar, Baz, etc. with the names of actual packages that you want to use
5151
(name = "Bar",),
5252
(name = "Baz",),
5353
]
@@ -65,8 +65,8 @@ mkpath("my_image_name")
6565
cd("my_image_name")
6666

6767
pkgs = [
68-
(name = "Foo", version = "1.2.3",),
69-
(name = "Bar", version = "4.5.6",),
68+
(name = "Foo", version = "1.2.3",), # Replace Foo, Bar, Baz, etc. with the names of actual packages that you want to use
69+
(name = "Bar", version = "4.5.6",), # and replace the version numbers with actual version numbers for the packages
7070
(name = "Baz", version = "7.8.9",),
7171
]
7272

@@ -83,9 +83,9 @@ mkpath("my_image_name")
8383
cd("my_image_name")
8484

8585
pkgs = [
86-
(name = "Foo", version = "1.2.3",),
87-
(name = "Bar", version = "4.5.6",),
88-
(name = "Baz", rev = "master",),
86+
(name = "Foo", version = "1.2.3",), # Replace Foo, Bar, Baz, etc. with the names of actual packages that you want to use
87+
(name = "Bar", version = "4.5.6",), # and replace the version numbers with actual version numbers for the packages
88+
(name = "Baz", rev = "master",), # and replace "master" with the name of the branch you want to use
8989
]
9090

9191
SimpleContainerGenerator.create_dockerfile(pkgs, pwd(); julia_version = v"1.4.0")

0 commit comments

Comments
 (0)