Last active
October 28, 2020 13:31
-
-
Save WolfangAukang/571469b7740085e773b67fdbdd3e5a9a to your computer and use it in GitHub Desktop.
Simplerisk Testing with Latest
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.6' | |
services: | |
simplerisk: | |
environment: | |
- FIRST_TIME_SETUP=1 | |
- FIRST_TIME_SETUP_PASS=rootpassword | |
- FIRST_TIME_SETUP_WAIT=10 | |
- SIMPLERISK_DB_HOSTNAME=mariadb | |
image: wolfangaukang/simplerisk-minimal:latest | |
ports: | |
- "80:80" | |
- "443:443" | |
mariadb: | |
command: mysqld --sql_mode="NO_ENGINE_SUBSTITUTION" | |
environment: | |
- MYSQL_ROOT_PASSWORD=rootpassword | |
image: mariadb:10.4 | |
smtp: | |
image: namshi/smtp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment