Update docker-compose.yaml
All checks were successful
Updates/Joplin/pipeline/head This commit looks good
All checks were successful
Updates/Joplin/pipeline/head This commit looks good
This commit is contained in:
parent
685c510b01
commit
bfd2f126d3
@ -17,11 +17,11 @@ services:
|
|||||||
DB_FILE: /var/lib/joplin/database.sqlite
|
DB_FILE: /var/lib/joplin/database.sqlite
|
||||||
|
|
||||||
# Postgres
|
# Postgres
|
||||||
POSTGRES_HOST:
|
POSTGRES_HOST: postgres
|
||||||
POSTGRES_DATABASE:
|
POSTGRES_DATABASE: joplindb
|
||||||
POSTGRES_USER:
|
POSTGRES_USER: joplin
|
||||||
POSTGRES_PASSWORD:
|
POSTGRES_PASSWORD: ${PG_PASS}
|
||||||
POSTGRES_PORT:
|
POSTGRES_PORT: 5432
|
||||||
|
|
||||||
|
|
||||||
#LDAP
|
#LDAP
|
||||||
@ -57,6 +57,22 @@ services:
|
|||||||
- joplin-net
|
- joplin-net
|
||||||
|
|
||||||
|
|
||||||
|
postgres:
|
||||||
|
container_name: postgres
|
||||||
|
image: postgres:16
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
POSTGRES_DB: joplindb
|
||||||
|
POSTGRES_USER: joplin
|
||||||
|
POSTGRES_PASSWORD: ${PG_PASS}
|
||||||
|
ports:
|
||||||
|
- "5432:5432"
|
||||||
|
volumes:
|
||||||
|
- database:/var/lib/postgresql/data
|
||||||
|
networks:
|
||||||
|
- joplin-net
|
||||||
|
|
||||||
|
|
||||||
joplin-vieweb:
|
joplin-vieweb:
|
||||||
image: gri38/django-joplin-vieweb:latest
|
image: gri38/django-joplin-vieweb:latest
|
||||||
container_name: joplin-vieweb
|
container_name: joplin-vieweb
|
||||||
@ -95,6 +111,7 @@ volumes:
|
|||||||
data:
|
data:
|
||||||
vieweb:
|
vieweb:
|
||||||
apidata:
|
apidata:
|
||||||
|
database:
|
||||||
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user