Initial commit for archive

This commit is contained in:
Lucas
2025-11-07 16:40:16 +00:00
commit fefe0b0419
5 changed files with 90 additions and 0 deletions

31
docker-compose.yml Normal file
View File

@@ -0,0 +1,31 @@
services:
db:
image: postgres:13.1
container_name: joplin-db
restart: always
volumes:
- /mnt/blockstorage-1/joplin/postgres:/var/lib/postgresql/data
env_file:
- db.env
networks:
- joplin
app:
image: joplin/server:latest
container_name: joplin-app
depends_on:
- db
restart: always
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
env_file:
- app.env
networks:
- joplin
- reverse-proxy
networks:
joplin:
reverse-proxy:
external: true