15 lines
249 B
YAML
15 lines
249 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "${APP_PORT:-8080}:${APP_PORT:-8080}"
|
|
volumes:
|
|
- ./instance:/app/instance
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|