您的位置:首页 >开源工具部署:Docker搭建轻量Slash书签链接共享系统
发布于2026-08-13 阅读(0)
扫一扫,手机访问
[root@jeven ~]# systemctl status docker
● docker.service - Docker Application Container Engine
Loaded: loaded (/usr/lib/systemd/system/docker.service; enabled; vendor preset: disabled)
Active: active (running) since Tue 2023-10-31 03:39:58 CST; 4min 25s ago
Docs: https://docs.docker.com
Main PID: 11532 (dockerd)
Tasks: 21
Memory: 136.1M
CGroup: /system.slice/docker.service[root@jeven ~]# docker -v
Docker version 20.10.17, build 100c701[root@jeven ~]# docker compose version
Docker Compose version v2.6.0[root@jeven ~]# docker pull yourselfhosted/slash:latest
latest: Pulling from yourselfhosted/slash
96526aa774ef: Already exists
0bab34c8d62f: Pull complete
eaf07cc37039: Pull complete
25ffa24d8d92: Pull complete
25407c805f67: Pull complete
Digest: sha256:c984707d6f2c8556f4e0a46427da5210897fa02170128e436c973c3bec250c2c
Status: Downloaded newer image for yourselfhosted/slash:latest
docker.io/yourselfhosted/slash:latestdocker run -d
--name slash
-p 5231:5231
-v /volume1/docker/slash/:/var/opt/slash
yourselfhosted/slash:latest使用docker compose运行slash容器version: '3'
services:
slash:
image: yourselfhosted/slash:latest
container_name: slash
ports:
- 5231:5231
volumes:
- slash:/var/opt/slash
restart: unless-stopped
volumes:
slash:通过 docker-compose.yaml 文件来创建 slash 容器
[root@jeven slash]# docker compose up -d
[+] Running 3/3
⠿ Network slash_default Created 0.0s
⠿ Volume "slash_slash" Created 0.0s
⠿ Container slash Started 0.6s[root@jeven slash]# docker compose ps
NAME COMMAND SERVICE STATUS PORTS
slash "./slash" slash running 0.0.0.0:5231->5231/tcp, :::5231->5231/tcp[root@jeven slash]# docker compose logs
slash | ---
slash | Server profile
slash | dsn: /var/opt/slash/slash_prod.db
slash | port: 5231
slash | mode: prod
slash | version: 0.4.6
slash | ---
slash | Welcome to Slash!
slash | ---
slash | See more in:
slash | ---
slash | Version 0.4.6 has been started on port 5231
slash | GitHub: https://github.com/boojack/slash
















售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
售后无忧
立即购买>office旗舰店
正版软件
正版软件
正版软件
正版软件
正版软件
1
2
3
4
5
6
7
8
9