blob: df0c581fd5965ef9f9840e5dd5eb0265660402fa (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
services:
bogenherr:
image: bogenherr:v0.1
tty: true
build:
context: .
args:
OLO_USERNAME: ${OLO_USERNAME}
OLO_GROUPNAME: ${OLO_GROUPNAME}
OLO_UID: ${OLO_UID}
OLO_GID: ${OLO_GID}
network_mode: "host"
container_name: bogenherr
volumes:
# - type: bind
# source: /tmp/bogenherr
# target: /tmp/bogenherr
- type: bind
source: ${OLO_PROJECT_HOME}
target: ${OLO_PROJECT_HOME}
- type: bind
source: ~/.m2
target: /home/${OLO_USERNAME}/.m2
- type: bind
source: ~/.bashrc
target: /home/${OLO_USERNAME}/.bashrc
- type: bind
source: ~/.bash_history
target: /home/${OLO_USERNAME}/.bash_history
- type: bind
source: ~/.vimrc
target: /home/${OLO_USERNAME}/.vimrc
- type: bind
source: ~/.emacs.d
target: /home/${OLO_USERNAME}/.emacs.d
- type: bind
source: ~/.gitconfig
target: /home/${OLO_USERNAME}/.gitconfig
- type: bind
source: ~/.ssh
target: /home/${OLO_USERNAME}/.ssh
- type: bind
source: ~/.password-store
target: /home/${OLO_USERNAME}/.password-store
- type: bind
source: ~/.gnupg
target: /home/${OLO_USERNAME}/.gnupg
- type: bind
source: /run/user/${OLO_UID}
target: /run/user/${OLO_UID}
- type: bind
source: /run/user/${OLO_UID}/gnupg/S.gpg-agent
target: /home/${OLO_USERNAME}/.gnupg/S.gpg-agent
- type: bind
source: /etc/hosts
target: /etc/hosts
- type: bind
source: /etc/ssh
target: /etc/ssh
- type: bind
source: /var/log/lisp
target: /var/log/lisp
environment:
- TERM=xterm-256color
- AWS_SDK_LOAD_CONFIG=1
- https_proxy=${https_proxy}
- http_proxy=${http_proxy}
- no_proxy=${no_proxy}
- GITHUB_TOKEN=${GITHUB_TOKEN}
- GPG_AGENT_INFO=/home/${OLO_USERNAME}/.gnupg/S.gpg-agent:0:1
command: [ "/bin/bash -l -c" ]
|