19 lines
No EOL
421 B
YAML
Executable file
19 lines
No EOL
421 B
YAML
Executable file
services:
|
|
butterflyvu:
|
|
image: ark.sudovanilla.org/korbs/butterlyvu:amd64
|
|
restart: unless-stopped
|
|
ports:
|
|
- 2014:2014
|
|
volumes:
|
|
- ./config.json:/app/config.json
|
|
- ./docs/:/app/src/content/docs/
|
|
- ./dists/:/app/dist/
|
|
|
|
nginx:
|
|
image: nginx:latest
|
|
restart: unless-stopped
|
|
network_mode: bridge
|
|
ports:
|
|
- 4242:80
|
|
volumes:
|
|
- ./dists/:/usr/share/nginx/html/ |