mirror of
https://github.com/XFox111/bonch-calendar.git
synced 2026-04-22 07:08:01 +03:00
19 lines
316 B
YAML
19 lines
316 B
YAML
services:
|
|
api:
|
|
image: xfox111/bonch-calendar-api:latest
|
|
build:
|
|
context: ./api
|
|
ports:
|
|
- 8080:8080
|
|
|
|
app:
|
|
image: xfox111/bonch-calendar-app:latest
|
|
build:
|
|
context: ./app
|
|
args:
|
|
- API_HOST=http://localhost:8080
|
|
ports:
|
|
- 8000:80
|
|
depends_on:
|
|
- api
|