mirror of
https://codeberg.org/gigirassy/nixos-server-config
synced 2026-08-30 23:37:41 +00:00
18 lines
353 B
YAML
18 lines
353 B
YAML
# google lens frontend
|
|
services:
|
|
rens:
|
|
container_name: rens
|
|
restart: unless-stopped
|
|
build: .
|
|
init: true
|
|
ports:
|
|
- "127.0.0.1:4664:4664"
|
|
cap_drop:
|
|
- ALL
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
volumes:
|
|
- type: bind
|
|
source: ./cookies.txt
|
|
target: /cookies.txt
|
|
read_only: false |