mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
16 lines
465 B
YAML
16 lines
465 B
YAML
# For development this compose file starts the database only. The app can then
|
|
# be started using `npm run start-dev`, which is useful for development, because
|
|
# it means the app Docker file doesn't have to be rebuilt on each change.
|
|
|
|
version: '3'
|
|
|
|
services:
|
|
db:
|
|
image: postgres:13.1
|
|
ports:
|
|
- "5432:5432"
|
|
environment:
|
|
- POSTGRES_PASSWORD=joplin
|
|
- POSTGRES_USER=joplin
|
|
- POSTGRES_DB=joplin
|