2024-06-05 19:48:11 -05:00
|
|
|
services:
|
2024-11-12 17:31:28 -05:00
|
|
|
butterflyvu:
|
2024-12-11 11:54:26 -05:00
|
|
|
image: oci.registry.sudovanilla.org/butterflyvu:latest
|
2024-12-12 09:05:11 -05:00
|
|
|
restart: always
|
2024-06-06 16:50:54 -05:00
|
|
|
volumes:
|
2024-12-12 17:49:39 -05:00
|
|
|
# Configuration
|
2024-11-12 17:31:28 -05:00
|
|
|
- ./config.json:/app/config.json
|
2024-12-12 17:49:39 -05:00
|
|
|
# Homepage
|
2024-12-01 00:24:26 -05:00
|
|
|
- ./docs/home.mdx:/app/src/content/home.mdx
|
2024-12-12 17:49:39 -05:00
|
|
|
# Your Documentations
|
2024-11-12 17:31:28 -05:00
|
|
|
- ./docs/:/app/src/content/docs/
|
2024-12-12 17:49:39 -05:00
|
|
|
# Use this add images locally and update your favicon
|
|
|
|
- ./public/:/app/public/
|
|
|
|
# Generated, do not touch
|
2024-11-12 17:31:28 -05:00
|
|
|
- ./dists/:/app/dist/
|
|
|
|
|
|
|
|
nginx:
|
|
|
|
image: nginx:latest
|
2024-12-12 09:05:11 -05:00
|
|
|
restart: always
|
2024-11-12 17:31:28 -05:00
|
|
|
ports:
|
|
|
|
- 4242:80
|
|
|
|
volumes:
|
|
|
|
- ./dists/:/usr/share/nginx/html/
|