mirror of
https://github.com/nickrunning/wechat-selkies.git
synced 2026-05-09 08:28:24 +00:00
21 lines
735 B
YAML
21 lines
735 B
YAML
---
|
|
services:
|
|
wechat-selkies:
|
|
build:
|
|
context: .
|
|
image: wechat-selkies:latest
|
|
container_name: wechat-selkies
|
|
volumes:
|
|
- ./config:/config
|
|
devices:
|
|
- /dev/dri:/dev/dri # optional, for hardware acceleration
|
|
ports:
|
|
- "3000:3000" # http port
|
|
- "3001:3001" # https port
|
|
restart: unless-stopped
|
|
environment:
|
|
- PUID=1000 # set user id according to your system
|
|
- PGID=100 # set group id according to your system
|
|
# - CUSTOM_USER=<Your Name> # recommended to set a custom user name
|
|
# - PASSWORD=<Your Password> # recommended to set a password for selkies web ui
|
|
shm_size: "1gb" # recommended, will improve performance |