Files
interview-buddy-dev-deploym…/host/docker-compose-template.yaml
2024-03-31 14:00:53 -05:00

13 lines
237 B
YAML

version: '3.8'
services:
interview-buddy-api:
container_name: interview-buddy-api
image: {{image}}
environment:
{{#env}}
- {{key}}={{value}}
{{/env}}
ports:
- "8188:8000"
restart: unless-stopped