mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-01-25 13:48:18 -05:00
On hover on the Zerobyte version in the sidebar A card will appear to show the versions of the binaries (restic, rclone, shoutrrr)
42 lines
927 B
YAML
42 lines
927 B
YAML
services:
|
|
zerobyte-dev:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
target: development
|
|
container_name: zerobyte
|
|
restart: unless-stopped
|
|
devices:
|
|
- /dev/fuse:/dev/fuse
|
|
cap_add:
|
|
- SYS_ADMIN
|
|
environment:
|
|
- NODE_ENV=development
|
|
ports:
|
|
- "4096:4096"
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /var/lib/zerobyte:/var/lib/zerobyte
|
|
- ./app:/app/app
|
|
- ~/.config/rclone:/root/.config/rclone
|
|
|
|
zerobyte-prod:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
target: production
|
|
args:
|
|
- APP_VERSION=0.20.0
|
|
container_name: zerobyte
|
|
restart: unless-stopped
|
|
devices:
|
|
- /dev/fuse:/dev/fuse
|
|
cap_add:
|
|
- SYS_ADMIN
|
|
ports:
|
|
- "4096:4096"
|
|
volumes:
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- /var/lib/zerobyte:/var/lib/zerobyte
|
|
- ~/.config/rclone:/root/.config/rclone
|