nas_docker_compose/chromium/docker-compose.yaml

22 lines
538 B
YAML
Raw Normal View History

2024-08-29 01:39:41 +08:00
---
services:
chromium:
image: lscr.io/linuxserver/chromium:latest
container_name: chromium
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- HTTP_PROXY=http://192.168.187.59:7890
- HTTPS_PROXY=https://192.168.187.59:7890
# # - ALL_PROXY=socks5://192.168.187.59:7891
volumes:
- /path/to/config:/config
# - /home/wsq/clash:/clash
ports:
- 4040:3000
- 4041:3001
shm_size: "1gb"
restart: always