swarm
This commit is contained in:
BIN
builder-docker/.DS_Store
vendored
Normal file
BIN
builder-docker/.DS_Store
vendored
Normal file
Binary file not shown.
46
builder-docker/fastdfs/docker-compose-old.yml
Normal file
46
builder-docker/fastdfs/docker-compose-old.yml
Normal file
@ -0,0 +1,46 @@
|
||||
version: '3'
|
||||
services:
|
||||
tracker:
|
||||
image: harbor.sino-assist.com/season/fastdfs:1.2
|
||||
container_name: tracker
|
||||
network_mode: host
|
||||
restart: always
|
||||
volumes:
|
||||
- "./tracker_data:/fastdfs/tracker/data"
|
||||
# ports:
|
||||
# - "22122:22122"
|
||||
command: "tracker"
|
||||
|
||||
storage:
|
||||
image: harbor.sino-assist.com/season/fastdfs:1.2
|
||||
container_name: storage
|
||||
network_mode: host
|
||||
# links:
|
||||
# - tracker
|
||||
restart: always
|
||||
volumes:
|
||||
- "./storage.conf:/fdfs_conf/storage.conf"
|
||||
- "./storage_base_path:/fastdfs/storage/data"
|
||||
- "./store_path0:/fastdfs/store_path"
|
||||
#ports:
|
||||
# - "23000:23000"
|
||||
environment:
|
||||
TRACKER_SERVER: "192.168.1.204:22122"
|
||||
command: "storage"
|
||||
|
||||
nginx:
|
||||
image: harbor.sino-assist.com/season/fastdfs:1.2
|
||||
container_name: fdfs-nginx
|
||||
network_mode: host
|
||||
restart: always
|
||||
volumes:
|
||||
- "./nginx.conf:/etc/nginx/conf/nginx.conf"
|
||||
- "./store_path0:/fastdfs/store_path"
|
||||
# links:
|
||||
# - tracker
|
||||
# ports:
|
||||
# - "8088:8088"
|
||||
environment:
|
||||
TRACKER_SERVER: "192.168.1.204:22122"
|
||||
command: "nginx"
|
||||
|
@ -1,46 +1,28 @@
|
||||
version: '3'
|
||||
services:
|
||||
tracker:
|
||||
image: season/fastdfs:1.2
|
||||
container_name: tracker
|
||||
image: ygqygq2/fastdfs-nginx:latest
|
||||
command: tracker
|
||||
network_mode: host
|
||||
restart: always
|
||||
volumes:
|
||||
- "./tracker_data:/fastdfs/tracker/data"
|
||||
# ports:
|
||||
# - "22122:22122"
|
||||
command: "tracker"
|
||||
|
||||
storage:
|
||||
image: season/fastdfs:1.2
|
||||
container_name: storage
|
||||
- /data/tracker:/var/fdfs
|
||||
ports:
|
||||
- 22122:22122
|
||||
storage0:
|
||||
container_name: storage0
|
||||
image: ygqygq2/fastdfs-nginx:latest
|
||||
command: storage
|
||||
network_mode: host
|
||||
# links:
|
||||
# - tracker
|
||||
restart: always
|
||||
volumes:
|
||||
- "./storage.conf:/fdfs_conf/storage.conf"
|
||||
- "./storage_base_path:/fastdfs/storage/data"
|
||||
- "./store_path0:/fastdfs/store_path"
|
||||
#ports:
|
||||
# - "23000:23000"
|
||||
extra_hosts:
|
||||
- "tracker:192.168.1.204"
|
||||
environment:
|
||||
TRACKER_SERVER: "192.168.1.206:22122"
|
||||
command: "storage"
|
||||
|
||||
nginx:
|
||||
image: season/fastdfs:1.2
|
||||
container_name: fdfs-nginx
|
||||
network_mode: host
|
||||
restart: always
|
||||
- TRACKER_SERVER=tracker:22122
|
||||
volumes:
|
||||
- "./nginx.conf:/etc/nginx/conf/nginx.conf"
|
||||
- "./store_path0:/fastdfs/store_path"
|
||||
# links:
|
||||
# - tracker
|
||||
# ports:
|
||||
# - "8088:8088"
|
||||
environment:
|
||||
TRACKER_SERVER: "192.168.1.206:22122"
|
||||
command: "nginx"
|
||||
- ./data/storage0:/var/fdfs
|
||||
- 8080:8080
|
||||
depends_on:
|
||||
- tracker
|
||||
|
||||
|
||||
## https://github.com/ygqygq2/fastdfs-nginx
|
@ -111,7 +111,7 @@ subdir_count_per_path=256
|
||||
|
||||
# tracker_server can ocur more than once, and tracker_server format is
|
||||
# "host:port", host can be hostname or ip address
|
||||
tracker_server=192.168.209.121:22122
|
||||
# tracker_server=192.168.209.121:22122
|
||||
|
||||
#standard log level as syslog, case insensitive, value list:
|
||||
### emerg for emergency
|
||||
|
BIN
builder-docker/java11/skywalking-agent/.DS_Store
vendored
Normal file
BIN
builder-docker/java11/skywalking-agent/.DS_Store
vendored
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -7,7 +7,7 @@ ADD gradle-8.7 /opt/gradle-8.7
|
||||
|
||||
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
|
||||
|
||||
RUN apt-get install -y nodejs git vim curl sshpass
|
||||
RUN apt-get install -y nodejs git vim curl sshpass pigz
|
||||
|
||||
|
||||
# ADD node-v18.20.2-linux-x64 /usr/local/node-v18.20.2-linux-x64
|
||||
|
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user