Skip to content

Commit

Permalink
fix directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
verkalacheva committed Aug 11, 2024
1 parent 87753ff commit b1d034f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions compose/docker-compose-DH-DEV.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
command: ./cmd.subjects.sh
volumes:
- ../dbs/subjects_db.sqlite3:/app/db.sqlite3
- ../backups/subjects_db_backup.json:/app/courses/fixtures/subjects_db_backup.json
- ./backups/subjects_db_backup.json:/app/courses/fixtures/subjects_db_backup.json
- ./startscripts/cmd.subjects.sh:/app/cmd.subjects.sh
- static:/app/static/
restart: unless-stopped
Expand All @@ -30,7 +30,7 @@ services:
command: ./cmd.users.sh
volumes:
- ../dbs/users_db.sqlite3:/app/db.sqlite3
- ../backups/users_db_backup.json:/app/users/fixtures/users_db_backup.json
- ./backups/users_db_backup.json:/app/users/fixtures/users_db_backup.json
- ./startscripts/cmd.users.sh:/app/cmd.users.sh
- static:/app/static/
depends_on:
Expand All @@ -44,7 +44,7 @@ services:
command: ./cmd.tests.sh
volumes:
- ../dbs/tests_db.sqlite3:/app/db.sqlite3
- ../backups/tests_db_backup.json:/app/tests/fixtures/tests_db_backup.json
- ./backups/tests_db_backup.json:/app/tests/fixtures/tests_db_backup.json
- ./startscripts/cmd.tests.sh:/app/cmd.tests.sh
- static:/app/static/
depends_on:
Expand Down
6 changes: 3 additions & 3 deletions compose/docker-compose-DH.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
command: ./cmd.subjects.sh
volumes:
- ../dbs/subjects_db.sqlite3:/app/db.sqlite3
- ../backups/subjects_db_backup.json:/app/courses/fixtures/subjects_db_backup.json
- ./backups/subjects_db_backup.json:/app/courses/fixtures/subjects_db_backup.json
- ./startscripts/cmd.subjects.sh:/app/cmd.subjects.sh
- static:/app/static/
restart: unless-stopped
Expand All @@ -30,7 +30,7 @@ services:
command: ./cmd.users.sh
volumes:
- ../dbs/users_db.sqlite3:/app/db.sqlite3
- ../backups/users_db_backup.json:/app/users/fixtures/users_db_backup.json
- ./backups/users_db_backup.json:/app/users/fixtures/users_db_backup.json
- ./startscripts/cmd.users.sh:/app/cmd.users.sh
- static:/app/static/
depends_on:
Expand All @@ -44,7 +44,7 @@ services:
command: ./cmd.tests.sh
volumes:
- ../dbs/tests_db.sqlite3:/app/db.sqlite3
- ../backups/tests_db_backup.json:/app/tests/fixtures/tests_db_backup.json
- ./backups/tests_db_backup.json:/app/tests/fixtures/tests_db_backup.json
- ./startscripts/cmd.tests.sh:/app/cmd.tests.sh
- static:/app/static/
depends_on:
Expand Down
6 changes: 3 additions & 3 deletions compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:
command: ./cmd.subjects.sh
volumes:
- ../dbs/subjects_db.sqlite3:/app/db.sqlite3
- ../backups/subjects_db_backup.json:/app/courses/fixtures/subjects_db_backup.json
- ./backups/subjects_db_backup.json:/app/courses/fixtures/subjects_db_backup.json
- ./startscripts/cmd.subjects.sh:/app/cmd.subjects.sh
- static:/app/static/
restart: unless-stopped
Expand All @@ -32,7 +32,7 @@ services:
command: ./cmd.users.sh
volumes:
- ../dbs/users_db.sqlite3:/app/db.sqlite3
- ../backups/users_db_backup.json:/app/users/fixtures/users_db_backup.json
- ./backups/users_db_backup.json:/app/users/fixtures/users_db_backup.json
- ./startscripts/cmd.users.sh:/app/cmd.users.sh
- static:/app/static/
depends_on:
Expand All @@ -46,7 +46,7 @@ services:
command: ./cmd.tests.sh
volumes:
- ../dbs/tests_db.sqlite3:/app/db.sqlite3
- ../backups/tests_db_backup.json:/app/fixtures/tests_db_backup.json
- ./backups/tests_db_backup.json:/app/fixtures/tests_db_backup.json
- ./startscripts/cmd.tests.sh:/app/cmd.tests.sh
- static:/app/static/
depends_on:
Expand Down

0 comments on commit b1d034f

Please sign in to comment.