16 lines
361 B
YAML
16 lines
361 B
YAML
services:
|
|
humanai-landing:
|
|
build: .
|
|
container_name: humanai-landing
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:80"
|
|
networks:
|
|
- npm_default
|
|
# NPM reaches this container by name: http://humanai-landing:80
|
|
# Port 8080 is also exposed on the host for direct access / health checks.
|
|
|
|
networks:
|
|
npm_default:
|
|
external: true
|