mirror of
https://github.com/joplin-vieweb/joplin-vieweb.git
synced 2024-12-04 13:33:20 +01:00
add docker-compose file without certbot
This commit is contained in:
parent
94aef531c2
commit
bfb8feb056
35
docker-compose-joplin-only.yml
Normal file
35
docker-compose-joplin-only.yml
Normal file
@ -0,0 +1,35 @@
|
||||
version: '3.4'
|
||||
|
||||
x-common-variables: &common-variables
|
||||
ORIGINS: "'localhost', '192.168.21.1'"
|
||||
|
||||
services:
|
||||
django-joplin-vieweb:
|
||||
image: gri38/django-joplin-vieweb:latest
|
||||
depends_on:
|
||||
- joplin-terminal-xapi
|
||||
environment:
|
||||
<<: *common-variables
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- <PORT-TO-YOUR-PROXY>:8000
|
||||
volumes:
|
||||
- joplin:/root/.config/joplin:ro
|
||||
- joplin-vieweb:/root/.config/joplin-vieweb
|
||||
networks:
|
||||
- joplin-net
|
||||
|
||||
joplin-terminal-xapi:
|
||||
image: gri38/joplin-terminal-xapi:latest
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- joplin:/root/.config/joplin
|
||||
networks:
|
||||
- joplin-net
|
||||
|
||||
volumes:
|
||||
joplin:
|
||||
joplin-vieweb:
|
||||
|
||||
networks:
|
||||
joplin-net: {}
|
Loading…
Reference in New Issue
Block a user