์ž์œ ๊ฒŒ์‹œํŒ

  • ์‹œ๋กค๋กœ์ง€ ๋‚˜์Šค LINKDING

    ํŽ˜์ด์ง€ ์ •๋ณด

    profile_image
    ์ž‘์„ฑ์ž์ฒœ์‚ฌ ์กฐํšŒ 5,811ํšŒ ์ž‘์„ฑ์ผ 2022-04-17 14:54:01 ๋Œ“๊ธ€ 0

    ๋ณธ๋ฌธ

    version: '3.3'
    services:
    ย  ย  linkding:
    ย  ย  ย  ย  container_name: linkding
    ย  ย  ย  ย  image: sissbruecker/linkding
    ย  ย  ย  ย  ports:
    ย  ย  ย  ย  ย  ย  - 9090:9090
    ย  ย  ย  ย  volumes:
    ย  ย  ย  ย  ย  ย  - /volume1/docker/linkding/data:/etc/linkding/data
    ย  ย  ย  ย  restart: unless-stopped

    ย 

    User setup

    Finally you need to create a user so that you can access the application. Replace the credentials in the following command and run it:

    ย 

    Docker

    docker exec -it linkding python manage.py createsuperuser --username=joe --email=joe@example.com

    Docker-compose

    docker-compose exec linkding python manage.py createsuperuser --username=joe --email=joe@example.com

    The command will prompt you for a secure password. After the command has completed you can start using the application by logging into the UI with your credentials.

    ย 

    ย 

    ย 
    ย 

    ๋Œ“๊ธ€๋ชฉ๋ก

    ๋“ฑ๋ก๋œ ๋Œ“๊ธ€์ด ์—†์Šต๋‹ˆ๋‹ค.