aboutsummaryrefslogtreecommitdiff
path: root/communities/red-right-hand/alpha.174bg.net/docker-compose.yaml
blob: 20d326fdd804fa12c86507cac06d2cfb10a73ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
services:
  # Node.js service (use with: docker compose up nextjs-standalone --build)
  nextjs-standalone:
    build:
      context: .
      dockerfile: Dockerfile
    image: nextjs-standalone-image
    container_name: nextjs-standalone-container
    environment:
      NODE_ENV: production
      PORT: "3000"
    ports:
      - "3000:3000"
    restart: unless-stopped