Add console + marketing site to Docker Compose and build-push
- Console: nginx SPA on port 3010, image reg.dd0c.net/dd0c-console - Marketing: nginx static on port 3011, image reg.dd0c.net/dd0c-marketing - Dockerfiles + .dockerignore for both - build-push.sh updated to include console + marketing targets
This commit is contained in:
@@ -207,6 +207,24 @@ services:
|
||||
postgres: { condition: service_healthy }
|
||||
redis: { condition: service_healthy }
|
||||
|
||||
# dd0c Console (React SPA)
|
||||
console:
|
||||
image: reg.dd0c.net/dd0c-console:latest
|
||||
build:
|
||||
context: ./console
|
||||
dockerfile: Dockerfile
|
||||
ports:
|
||||
- "3010:80"
|
||||
|
||||
# dd0c Marketing Site (Astro)
|
||||
marketing:
|
||||
image: reg.dd0c.net/dd0c-marketing:latest
|
||||
build:
|
||||
context: ./marketing/site
|
||||
dockerfile: Dockerfile
|
||||
ports:
|
||||
- "3011:80"
|
||||
|
||||
volumes:
|
||||
pg_data:
|
||||
meili_data:
|
||||
|
||||
Reference in New Issue
Block a user