Initial commit

This commit is contained in:
Trevor Vallender 2023-12-28 14:40:55 +00:00
commit 1d25f795a9
1 changed files with 26 additions and 0 deletions

26
compose.yaml Normal file
View File

@ -0,0 +1,26 @@
version: "2.1"
services:
calibre-web:
image: lscr.io/linuxserver/calibre-web:latest
container_name: calibre-web
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /opt/calibre-web/data:/config
- /storage/books:/books
ports:
- 8083:8083
restart: unless-stopped
wallabag:
image: wallabag/wallabag
container_name: wallabag
environment:
- SYMFONY__ENV__DOMAIN_NAME=http://articles.tsvallender.co.uk
volumes:
- /opt/wallabag/data:/var/www/wallabag/data
- /opt/wallabag/images:/var/www/wallabag/web/assets/images
ports:
- 8081:80