homepage.js/docker-compose.yml

15 lines
259 B
YAML
Raw Normal View History

2023-02-13 02:16:46 +01:00
version: '3'
services:
server:
build:
context: .
dockerfile: Dockerfile
volumes:
- './:/opt/code'
ports:
- '${APP_PORT}:${APP_PORT}'
- '9229:9229'
env_file: ./.env
environment:
APP_PORT: '${APP_PORT}'