14 lines
305 B
YAML
14 lines
305 B
YAML
version: '3'
|
|
services:
|
|
backend:
|
|
image: leonhoppe/web-desktop-backend:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- '4041:4041'
|
|
volumes:
|
|
- ./UploadData:/home/files
|
|
frontend:
|
|
image: leonhoppe/web-desktop-frontend:latest
|
|
restart: unless-stopped
|
|
ports:
|
|
- '4200:80' |