All checks were successful
Build and Deploy / build-deploy (push) Successful in 32s
14 lines
257 B
YAML
14 lines
257 B
YAML
name: rate-my-shots
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "${HOST_PORT:-3000}:3000"
|
|
volumes:
|
|
- "${DATA_DIR:-./data}:/app/data"
|
|
env_file: .env
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
restart: unless-stopped
|