Add docker stuff to host!

This commit is contained in:
2025-09-04 20:19:58 -05:00
parent 64a05df71d
commit 08bbf69f5b
3 changed files with 81 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
networks:
nginx-bridge:
external: true
services:
techtracker-next:
build:
context: ../../..
dockerfile: host/next/docker/Dockerfile
image: nextjs
container_name: techtracker-next
hostname: techtracker-next
domainname: techtracker.gbrown.org
networks: [nginx-bridge]
depends_on: ['tt-convex-backend']
ports: ['3000:3000']
tty: true
stdin_open: true
restart: unless-stopped