forked from corpusops/bitwardentools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-test.yml
160 lines (160 loc) · 5.32 KB
/
docker-compose-test.yml
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
version: "3.8"
x-bases:
x-base: &base
env_file: [.env, .env.local]
environment:
ADMIN_TOKEN: supersecret
BITWARDEN_BACKUP_IMAGE: corpusops/dbsmartbackup:postgres-13
BITWARDEN_DB_IMAGE: corpusops/postgres:13
BITWARDEN_DOMAIN: bitwarden
DATABASE_URL: postgresql://db:db@db/db
BITWARDEN_IMAGE: vaultwarden/server:1.29.1
DATA_FOLDER: /data
DISABLE_ADMIN_TOKEN: "true"
DOMAIN: http://bitwarden
F2B_LOG_LEVEL: DEBUG
INVITATION_ORG_NAME: bitwarden bitwarden
LOG_FILE: /logs/bitwarden.log
LOG_LEVEL: Info
MAILCATCHER_PASSWORD: secret
MAILCATCHER_USER: mailcatcher
MH_API_BIND_ADDR: 0.0.0.0:8025
MH_AUTH_FILE: /home/mailhog/pw
MH_MAILDIR_PATH: /mails
MH_SMTP_BIND_ADDR: 0.0.0.0:1025
MH_STORAGE: maildir
MH_UI_BIND_ADDR: 0.0.0.0:8025
MH_UI_WEB_PATH: /mailcatcher
NGINX_REAL_IP_FROM: "10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 ${BITWARDEN_NETWORK:-172.38.0}.0/12"
PASSWORD_ITERATIONS: '2000000'
PGPASSWD: "${PGPASSWD:-db}"
PGPASSWORD: "${PGPASSWD:-db}"
POSTGRES_DB: db
POSTGRES_HOST: db
POSTGRES_PASSWORD: db
POSTGRES_PORT: '5432'
POSTGRES_USER: db
SIGNUPS_ALLOWED: "true"
SIGNUPS_VERIFY: "false"
SMTP_EXPLICIT_TLS: "false"
SMTP_FROM: no-reply@org.com
SMTP_FROM_NAME: bitwarden
SMTP_HOST: mailcatcher
SMTP_PORT: '1025'
SMTP_SSL: "false"
SMTP_TIMEOUT: '15'
WEBSOCKET_ENABLED: "true"
networks: {bitwarden_net: {driver: bridge, ipam: {config: [{subnet: "${BITWARDEN_NETWORK:-172.38.0}.0/24"}], driver: default}}}
services:
setup:
<<: [ *base ]
entrypoint:
- bash
- -ec
- |-
cp -arvf /cops_helpers/* /helpers
f=/started_$$(echo $$POSTGRES_DB|sed -re "s![/:]!__!g")
hf=/started_hr
POSTGRES_STARTUP_TIMEOUT=$${POSTGRES_STARTUP_TIMEOUT:-45s}
HELPERS_TIMEOUT=$${HELPERS_TIMEOUT:-45s}
u="postgres://$$POSTGRES_USER:$$POSTGRES_PASSWORD@$$POSTGRES_HOST:$$POSTGRES_PORT/$$POSTGRES_DB"
rf() { for fl in $$f $$hf;do if [ -f $$fl ] ;then rm -f $$fl;fi;done; }
export PATH=/cops_helpers:/$$PATH
rf
echo "Try connection to pgsql: $$POSTGRES_DB & wait for db init" >&2
( while true;do if ( echo select 1|psql -v ON_ERROR_STOP=1 $$u; );then touch $$f&&break;fi;done )&
echo "Try helpers availability" >&2
( set +ex;while true;do frep --version && touch $$hf&&break;sleep 1;echo retryh;done; )&
set -x
dockerize -timeout 300s -wait "file:///$$f"
dockerize -timeout 900s -wait "file:///$$hf"
set +x
rf
while true;do printf "HTTP/1.1 200 OK\nContent-Length: 7\n\nstarted\n"|( nc -l -p 80 || /bin/true);done
image: corpusops/postgres:13
networks: {bitwarden_net: {ipv4_address: "${BITWARDEN_NETWORK:-172.38.0}.6"}}
volumes:
- helpers:/helpers:rw
db:
<<: [ *base ]
image: corpusops/postgres:13
networks: {bitwarden_net: {ipv4_address: "${BITWARDEN_NETWORK:-172.38.0}.4"}}
security_opt: [seccomp=unconfined]
volumes:
- db:/var/lib/postgresql/data:rw
mailcatcher:
<<: [ *base ]
entrypoint:
- sh
- -c
- 'chown mailhog /mails && pw=$$(MH_AUTH_FILE="" MailHog bcrypt "$${MAILCATCHER_PASSWORD:-mailcatcher}")
&& echo "$${MAILCATCHER_USER:-mailcatcher}:$$pw" > $$MH_AUTH_FILE && su mailhog
-p -c MailHog'
hostname: mailcatcher
image: corpusops/mailhog
networks: {bitwarden_net: {ipv4_address: "${BITWARDEN_NETWORK:-172.38.0}.12"}}
user: root
volumes:
- mails:/mails:rw
bitwarden:
<<: [ *base ]
image: ${BITWARDEN_IMAGE:-vaultwarden/server:1.29.1}
hostname: bitwarden
depends_on: [db, setup, mailcatcher]
entrypoint:
- bash
- -exc
- 'while !(curl -s setup);do echo "not ready">&2;sleep 0.5;done
&& exec /start.sh "$$@"'
networks: {bitwarden_net: {ipv4_address: "${BITWARDEN_NETWORK:-172.38.0}.14"}}
volumes:
- bitwarden:/data:rw
- ./bitwarden:/conf:rw
- helpers:/helpers:rw
- logs:/logs:rw
app:
<<: [ *base ]
networks: {bitwarden_net: {}}
depends_on: [bitwarden]
entrypoint:
- bash
- -ec
- |-
/cops_helpers/dockerize -wait http://setup -timeout 60s
( while true; do if ( test -e /bitwarden/rsa_key.der || test -e /bitwarden/rsa_key.pem );then touch .tox/pem;break;fi;done )&
/cops_helpers/dockerize -wait file://$$(pwd)/.tox/pem -timeout 60s
rsync -a /bitwarden/ /test/
chmod -Rf +r /test && chown -Rf app /test /w/.tox
if test -e /bitwarden/rsa_key.der;then
export BITWARDEN_PRIVATE_KEY=$$(base64 /test/rsa_key.der|tr -d '\n')
elif test -e /bitwarden/rsa_key.pem;then
export BITWARDEN_PRIVATE_KEY=$$(base64 /test/rsa_key.pem|tr -d '\n')
else
exit 130
fi
exec docker-entrypoint.sh
volumes:
- "bitwarden:/bitwarden"
- helpers:/helpers:rw
traefik:
image: "traefik:v2.10"
networks: {bitwarden_net: {}}
entrypoint:
- "sh"
- "-xec"
- |-
/entrypoint.sh --configFile=/app/traefik.toml
ports:
- "${BITWARDEN_PORT:-3010}:80"
- "${BITWARDEN_PORT:-3013}:8080"
- "${BITWARDEN_PORT:-3011}:443"
volumes:
- "./:/app:ro"
- "./traefik.toml:/traefik.toml"
- "./traefik.r.toml:/traefik.r.toml"
volumes:
bitwarden: {}
mails: {}
logs: {}
helpers: {}
db: