mirror of https://github.com/tiyn/wiki
parent
280ddc75d6
commit
ac90b9c6d1
@ -0,0 +1,13 @@
|
||||
# redis
|
||||
|
||||
The official container and documentation was made by [redis](https://hub.docker.com/_/redis).
|
||||
The Docker container is mainly used in combination with other containers.
|
||||
To achieve this in the easiest way use a docker-compose file.
|
||||
|
||||
## Volumes
|
||||
|
||||
Set the following volumes in the `volumes:` section of the docker-compose file.
|
||||
|
||||
| Volume-Name | Container mount | Description |
|
||||
| ----------- | --------------- | -------------------- |
|
||||
| `redis` | `/data` | storage for all data |
|
@ -0,0 +1,105 @@
|
||||
# wallabag - wallabag
|
||||
|
||||
The Server consists of 3 Docker containers, one is the wallabag main server, one
|
||||
is a database and one a redis instance.
|
||||
In addition to the main container you need to connect a [mariadb container](./mariadb.md)
|
||||
and a [redis container](./redis.md) to it.
|
||||
|
||||
## Environment-variables
|
||||
|
||||
Set the following environment-variables in the `environment:` section of the
|
||||
docker-compose file.
|
||||
|
||||
| Name | Usage | Default |
|
||||
| --------------------------------- | ---------------------------------------- | ---------------------------------------- |
|
||||
| `MYSQL_ROOT_PASSWORD` | Password for the mySQL root user | |
|
||||
| `SYMFONY__ENV__DATABASE_DRIVER` | Database driver to use | `pdo_sqlite` |
|
||||
| `SYMFONY__ENV__DATABASE_HOST` | Host for database | `127.0.0.1` |
|
||||
| `SYMFONY__ENV__DATABASE_PORT` | Port for database | |
|
||||
| `SYMFONY__ENV__DATABASE_NAME` | Name for database | `symfony` |
|
||||
| `SYMFONY__ENV__DATABASE_USER` | User for database | `root` |
|
||||
| `SYMFONY__ENV__DATABASE_PASSWORD` | Password for database | `~` |
|
||||
| `SYMFONY__ENV__DATABASE_CHARSET` | Character set to be used by the database | `utf8` |
|
||||
| `SYMFONY__ENV__MAILER_HOST` | SMTP host | `127.0.0.1` |
|
||||
| `SYMFONY__ENV__MAILER_USER` | SMTP user | `~` |
|
||||
| `SYMFONY__ENV__MAILER_PASSWORD` | SMTP passwort | `~` |
|
||||
| `SYMFONY__ENV__FROM_EMAIL` | mail address used for outgoing mails | `wallabag@example.com` |
|
||||
| `SYMFONY__ENV__DOMAIN_NAME` | URL to wallabag instance | `https://your-wallabag-url-instance.com` |
|
||||
| `SYMFONY__ENV__SERVER_NAME` | Name for the wallabag server | `Your wallabag instance` |
|
||||
|
||||
## Volumes
|
||||
|
||||
Set the following volumes in the `volumes:` section of the docker-compose file.
|
||||
|
||||
| Volume-Name | Container mount | Description |
|
||||
| ------------------- | ------------------------------------- | -------------------------------- |
|
||||
| `wallabag_wallabag` | `/var/www/wallabag/web/assets/images` | storage for wallabag config data |
|
||||
|
||||
## Ports
|
||||
|
||||
Set the following ports in the `ports:` section.
|
||||
|
||||
| Container Port | Recommended outside port | Protocol | Description |
|
||||
| -------------- | ------------------------ | -------- | ----------- |
|
||||
| `80` | `80` | TCP | WebUI |
|
||||
|
||||
## Rebuild
|
||||
|
||||
```shell
|
||||
#!/bin/sh
|
||||
docker-compose down
|
||||
docker pull wallabag/wallabag:latest
|
||||
docker pull mariadb:latest
|
||||
docker pull redis:alpine
|
||||
docker-compose up -d
|
||||
```
|
||||
|
||||
## Docker-Compose.yml
|
||||
|
||||
```yml
|
||||
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=~
|
||||
- SYMFONY__ENV__FROM_EMAIL=wallabag@example.com
|
||||
- SYMFONY__ENV__DOMAIN_NAME=http://bag.home.server
|
||||
- SYMFONY__ENV__SERVER_NAME="Your wallabag instance"
|
||||
ports:
|
||||
- "8082:80"
|
||||
volumes:
|
||||
- wallabag_wallabag:/var/www/wallabag/web/assets/images
|
||||
db:
|
||||
image: mariadb
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=wallaroot
|
||||
volumes:
|
||||
- /opt/wallabag/data:/var/lib/mysql
|
||||
db:
|
||||
image: mariadb
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=wallaroot
|
||||
volumes:
|
||||
- /opt/wallabag/data:/var/lib/mysql
|
||||
redis:
|
||||
image: redis:alpine
|
||||
volumes:
|
||||
- wallabag_redis:/data
|
||||
|
||||
volumes:
|
||||
wallabag_wallabag:
|
||||
driver: local
|
||||
wallabag_redis:
|
||||
driver: local
|
||||
```
|
@ -0,0 +1,7 @@
|
||||
# Wallabag
|
||||
|
||||
[Wallabag](https://github.com/wallabag/wallabag) is a read-it-later app.
|
||||
|
||||
## Server
|
||||
|
||||
A server can be setup via docker with the [wallabag image](./docker-images/wallabag_-_wallabag.md).
|
Loading…
Reference in new issue