Skip to content

Commit eb0c2ae

Browse files
committed
feat: update passbolt
1 parent 88e6436 commit eb0c2ae

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

stacks/passbolt.yml

+5-10
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,7 @@ version: '3.8'
77
services:
88
passbolt:
99
image: passbolt/passbolt:${VERSION:-4.9.1-1-ce}
10-
command:
11-
- /bin/sh
12-
- -c
13-
- |
14-
chown -R 33:33 /var/www/passbolt/
15-
/usr/bin/wait-for.sh -t 0 mariadb:3306 -- /docker-entrypoint.sh
10+
command: /usr/bin/wait-for.sh -t 0 mariadb:3306 -- /docker-entrypoint.sh
1611
environment:
1712
- APP_FULL_BASE_URL=${SCHEME:-https}://${DOMAIN:-passbolt.localhost}
1813
- DATASOURCES_DEFAULT_HOST=mariadb
@@ -27,10 +22,9 @@ services:
2722
- EMAIL_TRANSPORT_DEFAULT_USERNAME=${SMTP_USER}
2823
- EMAIL_TRANSPORT_DEFAULT_PASSWORD=${SMTP_PASSWORD}
2924
- EMAIL_TRANSPORT_DEFAULT_TLS=${SMTP_TLS:-true}
30-
tmpfs:
31-
- /run
3225
volumes:
3326
- ${VOLUME_PATH}gpg:/etc/passbolt/gpg
27+
- ${VOLUME_PATH}jwt:/etc/passbolt/jwt
3428
deploy:
3529
labels:
3630
- traefik.enable=true
@@ -44,7 +38,7 @@ services:
4438
- traefik
4539

4640
mariadb:
47-
image: mariadb:10.5.9
41+
image: mariadb:${MARIADB_VERSION:-10.5.9}
4842
volumes:
4943
- ${VOLUME_PATH}mariadb:/var/lib/mysql:cached
5044
environment:
@@ -56,8 +50,9 @@ services:
5650
- internal
5751

5852
volumes:
59-
gpg:
6053
mariadb:
54+
gpg:
55+
jwt:
6156

6257
networks:
6358
internal:

0 commit comments

Comments
 (0)