test port 8002
This commit is contained in:
parent
ee9c2ce876
commit
f2a29ce994
|
|
@ -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,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,8 @@ services:
|
||||||
build: ../Dockerfile/
|
build: ../Dockerfile/
|
||||||
restart: always
|
restart: always
|
||||||
env_file: .env
|
env_file: .env
|
||||||
# ports:
|
ports:
|
||||||
# - 8002:8002
|
- 8002:8002
|
||||||
volumes:
|
volumes:
|
||||||
- "../../DjangoFiles:/DjangoFiles"
|
- "../../DjangoFiles:/DjangoFiles"
|
||||||
- "../../Docker/bashrc:/root/.bashrc"
|
- "../../Docker/bashrc:/root/.bashrc"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue