mirror of
https://gitea.zaclys.com/yannic/selfhosting.git
synced 2026-04-25 17:00:40 +02:00
wallabag
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
wallabag:
|
||||
container_name: wallabag
|
||||
environment:
|
||||
MYSQL_ROOT_PASSWORD: ${DB_ROOT_PASSWORD}
|
||||
SYMFONY__ENV__DOMAIN_NAME: https://${HOST_WALLABAG}.${DOMAIN}
|
||||
SYMFONY__ENV__FOSUSER_REGISTRATION: "false"
|
||||
SYMFONY__ENV__FROM_EMAIL: ${ADMIN_EMAIL}
|
||||
SYMFONY__ENV__MAILER_HOST: 127.0.0.1
|
||||
SYMFONY__ENV__MAILER_PASSWORD: '~'
|
||||
SYMFONY__ENV__MAILER_USER: '~'
|
||||
image: wallabag/wallabag
|
||||
expose:
|
||||
- 80
|
||||
volumes:
|
||||
- wallabag_data:/var/www/wallabag/data:rw
|
||||
- wallabag_images:/var/www/wallabag/web/assets/images:rw
|
||||
labels:
|
||||
- traefik.enable=true
|
||||
- traefik.http.routers.wallabag.rule=Host(`${HOST_WALLABAG}.${DOMAIN}`)
|
||||
- traefik.http.routers.wallabag.entrypoints=websecure
|
||||
- traefik.http.routers.wallabag.tls=true
|
||||
- traefik.http.services.wallabag.loadbalancer.server.port=80
|
||||
|
||||
volumes:
|
||||
wallabag_data:
|
||||
wallabag_images:
|
||||
Reference in New Issue
Block a user