Skip to content

Commit

Permalink
experiment
Browse files Browse the repository at this point in the history
  • Loading branch information
ab-smith committed Mar 2, 2025
1 parent 5e1540f commit a0248f8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
10 changes: 7 additions & 3 deletions docker-compose-build.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
volumes:
db: # Shared database volume
caddy_data: # Caddy-specific data

services:
backend:
container_name: backend
Expand All @@ -10,7 +14,7 @@ services:
- CISO_ASSISTANT_URL=https://localhost:8443
- DJANGO_DEBUG=True
volumes:
- ./db:/code/db
- db:/code/db

huey:
container_name: huey
Expand All @@ -25,7 +29,7 @@ services:
- CISO_ASSISTANT_URL=https://localhost:8443
- DJANGO_DEBUG=False
volumes:
- ./db:/code/db
- db:/code/db
entrypoint:
- /bin/sh
- -c
Expand Down Expand Up @@ -55,7 +59,7 @@ services:
ports:
- 8443:8443
volumes:
- ./db:/data
- caddy_data:/data
command: |
sh -c 'echo $$CISO_ASSISTANT_URL "{
reverse_proxy /api/* backend:8000
Expand Down
10 changes: 7 additions & 3 deletions enterprise/docker-compose-build.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
volumes:
db: # Shared database volume
caddy_data: # Caddy-specific data

services:
backend:
container_name: backend
Expand All @@ -13,7 +17,7 @@ services:
- LICENSE_EXPIRATION=2025-12-21
- DJANGO_SETTINGS_MODULE=enterprise_core.settings
volumes:
- ./db:/code/db
- db:/code/db

huey:
container_name: huey
Expand All @@ -29,7 +33,7 @@ services:
- LICENSE_SEATS=5
- LICENSE_EXPIRATION=2025-12-21
volumes:
- ./db:/code/db
- db:/code/db
entrypoint:
- /bin/sh
- -c
Expand Down Expand Up @@ -59,7 +63,7 @@ services:
ports:
- 8443:8443
volumes:
- ./db:/data
- caddy_data:/data
command: |
sh -c 'echo $$CISO_ASSISTANT_URL "{
reverse_proxy /api/* backend:8000
Expand Down

0 comments on commit a0248f8

Please sign in to comment.