diff options
Diffstat (limited to 'communities/red-right-hand/174bg.net/docker-compose.yaml')
| -rw-r--r-- | communities/red-right-hand/174bg.net/docker-compose.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/communities/red-right-hand/174bg.net/docker-compose.yaml b/communities/red-right-hand/174bg.net/docker-compose.yaml new file mode 100644 index 0000000..20d326f --- /dev/null +++ b/communities/red-right-hand/174bg.net/docker-compose.yaml @@ -0,0 +1,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 |
