Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Briar Mailbox
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
briar
Briar Mailbox
Commits
1327251e
Commit
1327251e
authored
Apr 15, 2024
by
Eric Lynema
Committed by
akwizgran
Apr 15, 2024
Browse files
Options
Downloads
Patches
Plain Diff
Added Dockerfile to run the mailbox.
parent
6511e186
No related branches found
No related tags found
1 merge request
!181
Added Dockerfile to run the mailbox.
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Dockerfile
+12
-0
12 additions, 0 deletions
Dockerfile
README.md
+9
-0
9 additions, 0 deletions
README.md
with
21 additions
and
0 deletions
Dockerfile
0 → 100644
+
12
−
0
View file @
1327251e
FROM
eclipse-temurin:11
AS
build
WORKDIR
/mailbox
COPY
. /mailbox
RUN
./gradlew x86LinuxJar
FROM
eclipse-temurin:11
RUN
mkdir
-p
/root/.local/share
VOLUME
/root
WORKDIR
/mailbox
COPY
--from=build /mailbox/mailbox-cli/build/libs/mailbox-cli-linux-x86_64.jar /mailbox/mailbox-cli-linux-x86_64.jar
CMD
[ "java", "-jar", "/mailbox/mailbox-cli-linux-x86_64.jar" ]
This diff is collapsed.
Click to expand it.
README.md
+
9
−
0
View file @
1327251e
...
@@ -98,6 +98,15 @@ And also ARM64 with
...
@@ -98,6 +98,15 @@ And also ARM64 with
./gradlew aarch64LinuxJar
./gradlew aarch64LinuxJar
As well as a docker container can be built with
docker build -t briar/mailbox .
And run with
docker volume create briar-mailbox-1
docker run --name briar-mailbox --volume briar-mailbox-1:/root briar/mailbox
## Donate
## Donate
[

](https://liberapay.com/Briar/donate)
[

](https://flattr.com/t/592836/)
[

](https://liberapay.com/Briar/donate)
[

](https://flattr.com/t/592836/)
Bitcoin and BCH: 1NZCKkUCtJV2U2Y9hDb9uq8S7ksFCFGR6K
Bitcoin and BCH: 1NZCKkUCtJV2U2Y9hDb9uq8S7ksFCFGR6K
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment