Run a complete Chromium web browser inside a Docker container, accessible from anywhere via a web interface. This setup provides a powerful solution for secure and isolated browsing, keeping your local system and network safe from web-based threats. You can access a full desktop browser experience from devices that might not typically support one, such as tablets or thin clients.
This container is built for performance and modern hardware, offering a range of advanced features:
proot-apps, ensuring your tools and settings are preserved across container recreations.services:
chromium:
image: lscr.io/linuxserver/chromium:latest
container_name: chromium
security_opt:
- seccomp:unconfined
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
- CUSTOM_USER=${CUSTOM_USER}
- PASSWORD=${PASSWORD}
- CHOWN_WORKSPACE=false
volumes:
- ./config:/config
ports:
- 3000:3000
- 3001:3001
shm_size: "1gb"
restart: unless-stoppedCUSTOM_USER=admin
PASSWORD=your_secure_passwordAuto-fetched about 23 hours ago
Auto-fetched about 23 hours ago