* fix: docker * fix landing * chore(landing): add outputFileTracingRoot to next config * ci: add github workflow for landing deployment via ssh and docker compose * chore: add docker-compose file for landing app build and run * feat docker
11 lines
195 B
YAML
11 lines
195 B
YAML
version: '3.8'
|
|
services:
|
|
landing:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/landing.Dockerfile
|
|
ports:
|
|
- "3000:3000"
|
|
restart: unless-stopped
|
|
container_name: landing
|