22 lines
538 B
YAML
22 lines
538 B
YAML
![]() |
---
|
||
|
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
|