From 0779e02fea599cf1ce505e0eea7c773a01288f75 Mon Sep 17 00:00:00 2001 From: Adil Sadqi Date: Thu, 14 Nov 2024 10:19:14 +0000 Subject: [PATCH] Update docker-compose.yml --- docker-compose.yml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 3138cd4..e63ee77 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,21 +1,21 @@ ---- -services: - chromium: - image: lscr.io/linuxserver/chromium:latest - container_name: chromium - security_opt: - - seccomp:unconfined #optional - environment: - - PUID=1000 # Adjust if necessary - - PGID=1000 # Adjust if necessary - - TZ=Etc/UTC # Adjust to your timezone - - CHROME_CLI=https://google.com/ #optional - - CUSTOM_USER=adil # HTTP Basic auth username, abc is default. - - PASSWORD=Sadqi@1981 # HTTP Basic auth password, abc is default. If unset there will be no auth - volumes: - - /path/on/host:/config # Replace /path/on/host with your host path - ports: - - 3000:3000 - - 3001:3001 - shm_size: "1gb" +--- +services: + chromium: + image: lscr.io/linuxserver/chromium:latest + container_name: chromium + security_opt: + - seccomp:unconfined #optional + environment: + - PUID=1000 # Adjust if necessary + - PGID=1000 # Adjust if necessary + - TZ=Etc/UTC # Adjust to your timezone + - CHROME_CLI=https://google.com/ #optional + - CUSTOM_USER=USERNAME # HTTP Basic auth username, abc is default. + - PASSWORD=PASSWORD # HTTP Basic auth password, abc is default. If unset there will be no auth + volumes: + - /path/on/host:/config # Replace /path/on/host with your host path + ports: + - 3000:3000 + - 3001:3001 + shm_size: "1gb" restart: unless-stopped \ No newline at end of file