mirror of
https://github.com/joplin-vieweb/joplin-vieweb.git
synced 2024-12-04 21:40:49 +01:00
64 lines
1.4 KiB
YAML
64 lines
1.4 KiB
YAML
version: '3.4'
|
|
|
|
x-common-variables: &common-variables
|
|
ORIGINS: "'your_domain.com', '12.34.56.78'"
|
|
CERT_DOMAIN: your_domain.com
|
|
CERT_MAIL: you@zaclys.net
|
|
|
|
services:
|
|
django-joplin-vieweb:
|
|
image: gri38/django-joplin-vieweb:latest
|
|
depends_on:
|
|
- joplin-terminal-xapi
|
|
environment:
|
|
<<: *common-variables
|
|
restart: unless-stopped
|
|
volumes:
|
|
- joplin:/root/.config/joplin:ro
|
|
- joplin-vieweb:/root/.config/joplin-vieweb
|
|
- certbot_www:/var/www/certbot/:ro
|
|
networks:
|
|
- joplin-net
|
|
|
|
joplin-terminal-xapi:
|
|
image: gri38/joplin-terminal-xapi:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- joplin:/root/.config/joplin
|
|
networks:
|
|
- joplin-net
|
|
|
|
joplin-vieweb-certbot:
|
|
image: gri38/joplin-vieweb-certbot:latest
|
|
restart: unless-stopped
|
|
environment:
|
|
<<: *common-variables
|
|
depends_on:
|
|
- joplin-vieweb-nginx
|
|
volumes:
|
|
- certbot_www:/var/www/certbot/:rw
|
|
- certbot_conf:/etc/letsencrypt/:rw
|
|
|
|
joplin-vieweb-nginx:
|
|
image: gri38/joplin-vieweb-nginx:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- 80:80
|
|
- 443:443
|
|
environment:
|
|
<<: *common-variables
|
|
volumes:
|
|
- certbot_www:/var/www/certbot/:ro
|
|
- certbot_conf:/etc/letsencrypt/:ro
|
|
networks:
|
|
- joplin-net
|
|
|
|
volumes:
|
|
joplin:
|
|
joplin-vieweb:
|
|
certbot_www:
|
|
certbot_conf:
|
|
|
|
networks:
|
|
joplin-net: {}
|