Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

local.yml compatible with inspirehep #44

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
- ./.envs/local/.django
- ./.envs/local/.postgres
ports:
- "8000:8000"
- "8001:8000"
command: sh -c 'poetry run python manage.py migrate && poetry run python manage.py runserver 0.0.0.0:8000'
networks:
- djangonetwork
Expand All @@ -32,7 +32,7 @@ services:
image: backoffice_production_postgres
container_name: backoffice_local_postgres
ports:
- "5432:5432"
- "5434:5432"
volumes:
- backoffice_postgres_data:/var/lib/postgresql/data
- backoffice_postgres_data_backups:/backups
Expand Down Expand Up @@ -76,7 +76,7 @@ services:
restart: "always"
container_name: backoffice_local_mq
ports:
- "5672:5672"
- "5673:5672"
networks:
- djangonetwork

Expand All @@ -102,9 +102,9 @@ services:
hard: 65536
mem_limit: 2g
ports:
- 9200:9200
- 9300:9300
- 9600:9600 # performance analysis
- 9201:9200
- 9301:9300
- 9601:9600 # performance analysis
networks:
- djangonetwork

Expand Down
Loading