mirror of
https://github.com/zoriya/tide.git
synced 2026-08-15 18:43:19 +00:00
24 lines
357 B
YAML
24 lines
357 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
api:
|
|
build:
|
|
context: ./api
|
|
dockerfile: Dockerfile.dev
|
|
ports:
|
|
- "7890:7890"
|
|
restart: on-failure
|
|
volumes:
|
|
- ./api:/app
|
|
env_file:
|
|
- .env
|
|
|
|
aria2:
|
|
image: p3terx/aria2-pro
|
|
ports:
|
|
- "6888:6888"
|
|
- "6888:6888/udp"
|
|
restart: on-failure
|
|
env_file:
|
|
- .env
|