-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.example
39 lines (37 loc) · 1.25 KB
/
docker-compose.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Copyright (c) 2017 by Niklaus Giger [email protected]
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http:#www.eclipse.org/legal/epl-v10.html
#
# This is a setup for running peter schönbuchers privates wiki
#
version: '2.0'
services:
hinclient:
build: .
networks:
private:
public:
ports:
- 5016:5016
- 5018:5018
- 5019:5019
- 5020:5020
volumes:
- /tmp/.X11-unix:/tmp/.X11-unix
# The HIN log file will be visible via $(PWD)/.HIN\ Client/hinclient.log
- ${HOME}/.HIN:/home/user_hin/.HIN
# Add here the absolute path to your HIN-Identity
- ${PWD}/YOUR_HIN_USER_ID.hin:/home/user_hin/user.hin
environment:
# This must be the value of your passphrase for the HIN-Client
# If it is wrong you will find the following line in the startup log
# java.security.UnrecoverableKeyException: PKCS12 verification error, incorrect password
PASSPHRASE: YOUR_HIN_PASSWORD
# Here follows the absolute path to your HIN identity files
IDENTITY_FILE: /home/example/example.hin
networks:
public:
private: