Created
November 15, 2020 14:47
-
-
Save bonehead/f21258c35f0dcf585debfa1f1cf15fbc to your computer and use it in GitHub Desktop.
Wallabag
This file contains 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' | |
services: | |
wallabag: | |
image: wallabag/wallabag | |
environment: | |
- MYSQL_ROOT_PASSWORD=wallaroot | |
- SYMFONY__ENV__DATABASE_DRIVER=pdo_mysql | |
- SYMFONY__ENV__DATABASE_HOST=db | |
- SYMFONY__ENV__DATABASE_PORT=3306 | |
- SYMFONY__ENV__DATABASE_NAME=wallabag | |
- SYMFONY__ENV__DATABASE_USER=wallabag | |
- SYMFONY__ENV__DATABASE_PASSWORD=wallapass | |
- SYMFONY__ENV__DATABASE_CHARSET=utf8mb4 | |
- SYMFONY__ENV__MAILER_HOST=127.0.0.1 | |
- SYMFONY__ENV__MAILER_USER=~ | |
- SYMFONY__ENV__MAILER_PASSWORD=~ | |
- [email protected] | |
- SYMFONY__ENV__DOMAIN_NAME=http://192.168.0.165:8055 | |
ports: | |
- 8055 : 80 | |
volumes: | |
- ./images:/var/www/wallabag/web/assets/images | |
db: | |
image: mariadb | |
environment: | |
- MYSQL_ROOT_PASSWORD=wallaroot | |
volumes: | |
- ./data:/var/lib/mysql | |
redis: | |
image: redis:alpine |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment