test port 8002

This commit is contained in:
Jonas 12t 2021-10-05 14:24:48 +04:00
parent ee9c2ce876
commit f2a29ce994
2 changed files with 12 additions and 2 deletions

View File

@ -35,5 +35,15 @@ class Command(BaseCommand):
)
tenant_raffinerie = Client.objects.get_or_create(schema_name="raffinerie",
name="raffinerie",
paid_until='2200-12-05',
on_trial=False)[0]
# Add one or more domains for the tenant
tenant_raffinerie_domain = Domain.objects.get_or_create(domain=f'raffinerie.{os.getenv("DOMAIN")}',
tenant=tenant_demo,
is_primary=True,
)

View File

@ -22,8 +22,8 @@ services:
build: ../Dockerfile/
restart: always
env_file: .env
# ports:
# - 8002:8002
ports:
- 8002:8002
volumes:
- "../../DjangoFiles:/DjangoFiles"
- "../../Docker/bashrc:/root/.bashrc"