mirror of
https://github.com/SunRed/haste-server.git
synced 2024-10-31 17:30:20 +01:00
Fix wrong path being used in docker-compose.yml
Forgot to change it after moving the directory from /usr/src/app to /app in Dockerfile
This commit is contained in:
parent
3606db4d90
commit
fe6697a6f1
1 changed files with 2 additions and 2 deletions
|
@ -9,10 +9,10 @@ services:
|
|||
network_mode: "bridge"
|
||||
volumes:
|
||||
# Default place to put files, can be removed with other storage system
|
||||
- haste-data:/usr/src/app/data:rw
|
||||
- haste-data:/app/data:rw
|
||||
|
||||
# Create config.js from the example config and make changes
|
||||
- ./config.js:/usr/src/app/config.js:ro
|
||||
- ./config.js:/app/config.js:ro
|
||||
|
||||
# PostgreSQL unix socket connection for use with pg storage and postgres database on host
|
||||
#- /var/run/postgresql:/var/run/postgresql:rw
|
||||
|
|
Loading…
Reference in a new issue