12 lines
235 B
YAML
12 lines
235 B
YAML
services:
|
|
wedding:
|
|
build: .
|
|
ports:
|
|
- "0.0.0.0:9401:8080"
|
|
environment:
|
|
- CONFIG_PATH=/app/config.yaml
|
|
volumes:
|
|
- ./config.yaml:/app/config.yaml:ro
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|