17 lines
415 B
YAML
17 lines
415 B
YAML
|
services:
|
||
|
butterflyvu:
|
||
|
image: ark.sudovanilla.org/korbs/butterflyvu:amd64
|
||
|
network_mode: bridge
|
||
|
volumes:
|
||
|
- ./config.json:/app/config.json
|
||
|
- ./docs/home.mdx:/app/src/content/home.mdx
|
||
|
- ./docs/:/app/src/content/docs/
|
||
|
- ./dists/:/app/dist/
|
||
|
|
||
|
nginx:
|
||
|
image: nginx:latest
|
||
|
restart: unless-stopped
|
||
|
ports:
|
||
|
- 4243:80
|
||
|
volumes:
|
||
|
- ./dists/:/usr/share/nginx/html/
|