Skip to content

Commit

Permalink
feat: update passbolt
Browse files Browse the repository at this point in the history
  • Loading branch information
johackim committed Sep 26, 2024
1 parent 88e6436 commit eb0c2ae
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions stacks/passbolt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ version: '3.8'
services:
passbolt:
image: passbolt/passbolt:${VERSION:-4.9.1-1-ce}
command:
- /bin/sh
- -c
- |
chown -R 33:33 /var/www/passbolt/
/usr/bin/wait-for.sh -t 0 mariadb:3306 -- /docker-entrypoint.sh
command: /usr/bin/wait-for.sh -t 0 mariadb:3306 -- /docker-entrypoint.sh
environment:
- APP_FULL_BASE_URL=${SCHEME:-https}://${DOMAIN:-passbolt.localhost}
- DATASOURCES_DEFAULT_HOST=mariadb
Expand All @@ -27,10 +22,9 @@ services:
- EMAIL_TRANSPORT_DEFAULT_USERNAME=${SMTP_USER}
- EMAIL_TRANSPORT_DEFAULT_PASSWORD=${SMTP_PASSWORD}
- EMAIL_TRANSPORT_DEFAULT_TLS=${SMTP_TLS:-true}
tmpfs:
- /run
volumes:
- ${VOLUME_PATH}gpg:/etc/passbolt/gpg
- ${VOLUME_PATH}jwt:/etc/passbolt/jwt
deploy:
labels:
- traefik.enable=true
Expand All @@ -44,7 +38,7 @@ services:
- traefik

mariadb:
image: mariadb:10.5.9
image: mariadb:${MARIADB_VERSION:-10.5.9}
volumes:
- ${VOLUME_PATH}mariadb:/var/lib/mysql:cached
environment:
Expand All @@ -56,8 +50,9 @@ services:
- internal

volumes:
gpg:
mariadb:
gpg:
jwt:

networks:
internal:
Expand Down

0 comments on commit eb0c2ae

Please sign in to comment.