You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
726 B
24 lines
726 B
version: '2'
|
|
services:
|
|
wallabag:
|
|
build:
|
|
context: ../
|
|
image: wallabag:mariadb
|
|
container_name: wallabag
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=wallaroot
|
|
- SYMFONY__ENV__SECRET=F00B4R
|
|
- 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
|
|
ports:
|
|
- "127.0.0.1:80:80"
|
|
db:
|
|
image: mariadb
|
|
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci --character-set-client-handshake=FALSE
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=wallaroot
|