24 lines
611 B
YAML
Executable File
24 lines
611 B
YAML
Executable File
---
|
|
services:
|
|
chromium:
|
|
image: linuxserver/chromium
|
|
container_name: chromium
|
|
security_opt:
|
|
- seccomp:unconfined #optional
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Etc/UTC
|
|
- HTTP_PROXY=http://host.docker.internal:7890
|
|
- HTTPS_PROXY=https://host.docker.internal:7890
|
|
# # - ALL_PROXY=socks5://192.168.187.59:7891
|
|
volumes:
|
|
- /path/to/config:/config
|
|
- /mnt/disk1/downloads:/config/Downloads
|
|
ports:
|
|
- 4040:3000
|
|
- 4041:3001
|
|
shm_size: "1gb"
|
|
restart: always
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway" |