Updated outline docker compose file

This commit is contained in:
root 2024-02-25 14:15:27 +00:00
parent c31673dd4e
commit 01919140ba
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ services:
ports: ports:
- 3000:3000 - 3000:3000
volumes: volumes:
- ./storage-data:/var/lib/outline/data - /mnt/data:/var/lib/outline/data
depends_on: depends_on:
- postgres - postgres
- redis - redis
@ -46,7 +46,7 @@ services:
ports: ports:
- 5432:5432 - 5432:5432
volumes: volumes:
- ./database-data:/var/lib/postgresql/data - /mnt/database:/var/lib/postgresql/data
healthcheck: healthcheck:
test: test:
- CMD - CMD
@ -56,4 +56,4 @@ services:
POSTGRES_USER: ${POSTGRES_USER} POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB} POSTGRES_DB: ${POSTGRES_DB}
restart: unless-stopped restart: unless-stopped