14 líneas
283 B
YAML
14 líneas
283 B
YAML
version: '3.8'
|
|
services:
|
|
buque:
|
|
build: .
|
|
image: buque:latest
|
|
container_name: buque
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./examples/config.example.yaml:/app/config.yaml:ro
|
|
environment:
|
|
- BUQUE_CONFIG=/app/config.yaml
|
|
restart: unless-stopped
|