Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linux-Chrome #51

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open

Linux-Chrome #51

wants to merge 4 commits into from

Conversation

Bo0tstrap
Copy link
Contributor

Chrome Kurulum Rehberi

###1. Klasör Oluşturalım

mkdir chrome
cd chrome
nano docker-compose.yaml

2. Docker Compose Dosyası

Aşağıdaki kodları docker-compose.yaml dosyasına yapıştırın:

version: '3.8'

services:
  chromium:
    image: lscr.io/linuxserver/chromium:latest
    container_name: chromium
    security_opt:
      - seccomp:unconfined #optional
    environment:
      - CUSTOM_USER=KULLANICI-ADINIZ    
      - PASSWORD=ŞİFRENİZ    
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
      - CHROME_CLI=
    volumes:
      - /root/chrome/config:/config
    ports:
      - 3010:3000 
      - 3011:3001
    shm_size: "2gb"
    restart: unless-stopped
  • KULLANICI-ADINIZ: Chromium'a giriş yapmak için kullanılacak kullanıcı adı.
  • ŞİFRENİZ: Chromium'a giriş yapmak için kullanılacak şifre.
  • shm_size: RAM boyutu 2 GB olarak ayarlandı.

Dosyayı kaydetmek için CTRL + X, ardından Y ve Enter tuşlarına basın.


3. Docker Konteynerini Başlatma

docker compose up -d

4. Chrome'a Erişim

Tarayıcınızdan aşağıdaki adrese giderek Chrome'a erişebilirsiniz:

http://SUNUCU-IP-ADRESINIZ:3010
  • SUNUCU-IP-ADRESINIZ: Sunucunuzun IP adresi.
  • Kullanıcı adı ve şifre ile giriş yapın.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant