Compare commits

..

No commits in common. "f0ad347d7da703a2c4b7442ad1853c12a829e2bd" and "c5490472b9a22571ac3a291cf6eef0238a046446" have entirely different histories.

1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ services:
ports: ports:
- 3000:3000 - 3000:3000
volumes: volumes:
- /mnt/data:/var/lib/outline/data - ./storage-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:
- /mnt/database:/var/lib/postgresql/data - ./database-data:/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