2024-05-27 06:42:33 +00:00
|
|
|
version: '3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
db:
|
|
|
|
image: postgres:15
|
|
|
|
volumes:
|
2024-05-27 06:51:13 +00:00
|
|
|
- /volume1/docker/joplin/db:/var/lib/postgresql/data
|
2024-05-31 18:23:19 +00:00
|
|
|
|
2024-05-27 06:42:33 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
environment:
|
|
|
|
- POSTGRES_PASSWORD=postgres
|
|
|
|
- POSTGRES_USER=postgres
|
|
|
|
- POSTGRES_DB=joplin
|
|
|
|
app:
|
|
|
|
image: joplin/server:latest
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
ports:
|
2024-05-27 06:45:00 +00:00
|
|
|
- "8084:22300"
|
2024-05-27 06:42:33 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
environment:
|
|
|
|
- APP_PORT=22300
|
2024-06-08 13:15:49 +00:00
|
|
|
- APP_BASE_URL=https://joplin.huguette.ovh/
|
2024-05-27 06:42:33 +00:00
|
|
|
- DB_CLIENT=pg
|
|
|
|
- POSTGRES_PASSWORD=postgres
|
|
|
|
- POSTGRES_DATABASE=joplin
|
|
|
|
- POSTGRES_USER=postgres
|
2024-05-31 18:22:16 +00:00
|
|
|
- POSTGRES_PORT=5432
|
2024-05-27 06:42:33 +00:00
|
|
|
- POSTGRES_HOST=db
|
2024-06-02 14:01:24 +00:00
|
|
|
- MAILER_ENABLED=1
|
|
|
|
- MAILER_HOST=smtp-mail.outlook.com
|
|
|
|
- MAILER_PORT=587
|
2024-05-27 06:42:33 +00:00
|
|
|
- MAILER_SECURE=1
|
2024-06-02 14:01:24 +00:00
|
|
|
- MAILER_AUTH_USER=lecoiffiermathieu@outlook.fr
|
|
|
|
- MAILER_AUTH_PASSWORD=I9OKN?./
|
2024-05-27 06:42:33 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
joplindb:
|