biohazard-vfx/docker-compose.yml
Nicholai 0d1f6012ec
Some checks are pending
Build and Push to Docker Hub / Push Docker image to Docker Hub (push) Waiting to run
Build and Push Docker Image / build-and-push (push) Waiting to run
delinted and successfully builds
2025-08-16 06:37:34 -06:00

31 lines
679 B
YAML

version: '3.8'
services:
biohazard-vfx:
build:
context: .
dockerfile: Dockerfile
image: biohazard-vfx:latest
container_name: biohazard-vfx
ports:
- "3000:3000"
environment:
- NODE_ENV=production
- NEXT_TELEMETRY_DISABLED=1
# Add your environment variables here
# - DATABASE_URL=your_database_url
# - NEXTAUTH_URL=your_nextauth_url
# - NEXTAUTH_SECRET=your_nextauth_secret
volumes:
- biohazard-vfx-data:/app/.next
- ./public:/app/public
restart: unless-stopped
networks:
- biohazard-network
volumes:
biohazard-vfx-data:
networks:
biohazard-network:
driver: bridge