Skip to content

Commit fa1afc8

Browse files
committed
Adds image and tarball build commands to the READMEs
Signed-off-by: Dennis Gove <[email protected]>
1 parent 45b501c commit fa1afc8

File tree

3 files changed

+51
-5
lines changed

3 files changed

+51
-5
lines changed

quickstart/docker_README.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
This Docker container is constructed specifically as an introductory quickstart for the Parsec service and client tool. It is not intended for use in any production system.
44

5-
The container is started with the following command
5+
The container is started with the following command. This assumes that your Docker system is configured to pull images from ghcr.io. If that's not the case, or if you'd like to build a local image, see section [Building Quickstart Image](#building-quickstart-image).
66

77
```bash
8-
$> docker run --rm --name parsec -it parsec-quickstart bash
8+
$> docker run --rm --name parsec -it parallaxsecond/parsec-quickstart bash
99
qs@319b139eb85e:/parsec/quickstart$
1010
```
1111

@@ -111,3 +111,23 @@ Testing Mbed Crypto provider
111111
24 A1 19 DB 3F 3C A0 82 FE 63
112112
....
113113
```
114+
115+
## Building Quickstart Image
116+
117+
Building the Quickstart image locally can be accomplished by executing the `package.sh` script located in the `quickstart` directory. Running `package.sh` will also generate the Quickstart tarball and place it in the current directory.
118+
119+
```bash
120+
$ quickstart > ./package.sh
121+
Packaging started...
122+
...
123+
Finalizing packages
124+
```
125+
126+
Alternatively, you can execute the Docker build command directly
127+
128+
```bash
129+
# We use .. at the end so the entire parsec directory is available in the docker build context
130+
$ quickstart > docker build --target runnable_image --tag parallaxsecond/parsec-quickstart -f quickstart.Dockerfile ..
131+
```
132+
133+
Image construction requires cloning of https://github.com/parallaxsecond/parsec-tool in order to include the `parsec-tool` binary in the built image. This will be done automatically as part of the image construction process, but it does necessitate your system having access to Github.

quickstart/package.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ check_release_tag() {
4848
}
4949

5050
build_runnable_image() {
51-
docker build --target runnable_image --tag parsec-quickstart -f quickstart.Dockerfile ${PARSEC_DIR}
51+
docker build --target runnable_image --tag parallaxsecond/parsec-quickstart -f quickstart.Dockerfile ${PARSEC_DIR}
5252
}
5353

5454
build_extract_tarball() {
55-
docker build --target tarball_builder --tag parsec-quickstart-tarball -f quickstart.Dockerfile ${PARSEC_DIR}
55+
docker build --target tarball_builder --tag parallaxsecond/parsec-quickstart-tarball -f quickstart.Dockerfile ${PARSEC_DIR}
5656

5757
# Extract the tarball out of the image used to construct it and place it in ${PACKAGE_PATH}
58-
docker run -v ${PACKAGE_PATH}:/opt/mount --rm parsec-quickstart-tarball bash -c 'cp /parsec-tar/*.tar.gz /opt/mount/'
58+
docker run -v ${PACKAGE_PATH}:/opt/mount --rm parallaxsecond/parsec-quickstart-tarball bash -c 'cp /parsec-tar/*.tar.gz /opt/mount/'
5959
}
6060

6161
echo "Packaging started..."

quickstart/tarball_README.md

+26
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ This tarball and content is constructed specifically as an introductory quicksta
44

55
These tools were built for a Linux-based `x86_64` system.
66

7+
Please see section [Building Quickstart Tarball](#building-quickstart-tarball) if you'd like to generate the Quickstart tarball locally.
8+
79
## Directory Layout
810

911
```
@@ -104,3 +106,27 @@ Testing Mbed Crypto provider
104106
24 A1 19 DB 3F 3C A0 82 FE 63
105107
....
106108
```
109+
110+
## Building Quickstart Tarball
111+
112+
Building the Quickstart tarball locally can be accomplished by executing the `package.sh` script located in the `quickstart` directory. Default execution will place the generated tarball in the current directory. If you'd like it placed in a specific directory then use the `-o <path>` option. Running `package.sh` will also generate the Quickstart Docker image.
113+
114+
```bash
115+
$ quickstart > ./package.sh
116+
Packaging started...
117+
...
118+
Finalizing packages
119+
```
120+
121+
Alternatively, you can execute the commands directly
122+
123+
```bash
124+
# Use Docker to generate the tarball
125+
# We use .. at the end so the entire parsec directory is available in the docker build context
126+
$ quickstart > docker build --target tarball_builder --tag parallaxsecond/parsec-quickstart-tarball -f quickstart.Dockerfile ..
127+
128+
# Extract the tarball from the Docker image and place it in the currently directory
129+
$ quickstart > docker run -v `pwd`:/opt/mount --rm parallaxsecond/parsec-quickstart-tarball bash -c 'cp /parsec-tar/*.tar.gz /opt/mount/'
130+
```
131+
132+
Tarball generation requires cloning of https://github.com/parallaxsecond/parsec-tool in order to include the `parsec-tool` binary in the built image. This will be done automatically as part of the tarball construction process, but it does necessitate your system having access to Github.

0 commit comments

Comments
 (0)