mirror of
https://ark.sudovanilla.org/Korbs/butterflyvu.git
synced 2024-12-22 15:23:54 +00:00
23 lines
606 B
YAML
Executable file
23 lines
606 B
YAML
Executable file
services:
|
|
butterflyvu:
|
|
image: oci.registry.sudovanilla.org/butterflyvu:latest
|
|
restart: always
|
|
volumes:
|
|
# Configuration
|
|
- ./config.json:/app/config.json
|
|
# Homepage
|
|
- ./docs/home.mdx:/app/src/content/home.mdx
|
|
# Your Documentations
|
|
- ./docs/:/app/src/content/docs/
|
|
# Use this add images locally and update your favicon
|
|
- ./public/:/app/public/
|
|
# Generated, do not touch
|
|
- ./dists/:/app/dist/
|
|
|
|
nginx:
|
|
image: nginx:latest
|
|
restart: always
|
|
ports:
|
|
- 4242:80
|
|
volumes:
|
|
- ./dists/:/usr/share/nginx/html/ |