Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Antoine Martin
quickref
Commits
d096bd7b
Commit
d096bd7b
authored
Nov 30, 2017
by
Antoine Martin
Browse files
Add instructions on Docker images
parent
df402dcf
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
d096bd7b
...
...
@@ -74,3 +74,28 @@ To disable logging, you can use the `log-errors` keyword argument:
```
lisp
(
refresh
:log-errors
nil
)
```
## Docker images
You can build your own Quickref images by modifying the provided Dockerfiles:
`Dockerfile-buildenv`
creates an image with all the dependencies needed to buid
the various Quicklisp libraries inside.
`Dockerfile`
builds on top of the
`buildenv`
image and sets up a
`quickbuilder`
user, pulls the latest versions of Quickref and Declt, and finally launches
Quickref.
### Building the images
To create the image with the build environment, run:
```
docker build -t my_image_name -f Dockerfile-buildenv .
```
To create the final Quickref image, run:
```
docker build -t my_image_name .
```
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment