Last active
November 7, 2018 15:59
-
-
Save overheadhunter/13a30838656bbb41ed77ce4cbf761150 to your computer and use it in GitHub Desktop.
Cryptomator Server PWD Stack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.4' | |
services: | |
wildfly: | |
image: skymatic/defendor:0.4.0 | |
environment: | |
- POSTGRES_USER=defendor | |
- POSTGRES_PASSWORD=notASecurePassword | |
- POSTGRES_DB=defendor | |
- SYSLOG_HOST=syslog | |
- SYSLOG_PORT=514 | |
ports: | |
- 443:8443 | |
postgres: | |
image: postgres:11.0-alpine | |
environment: | |
- POSTGRES_USER=defendor | |
- POSTGRES_PASSWORD=notASecurePassword | |
- POSTGRES_DB=defendor | |
syslog: | |
image: skymatic/syslog2pg:1 | |
environment: | |
- POSTGRES_USER=defendor | |
- POSTGRES_PASSWORD=notASecurePassword | |
- POSTGRES_DB=defendor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment