We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e97ae commit bad1130Copy full SHA for bad1130
src/fs_tree_manager/Dockerfile
@@ -0,0 +1,9 @@
1
+FROM golang:1.25
2
+
3
+WORKDIR /
4
5
+COPY . .
6
7
+RUN go build -o fs_tree_manager ./server.go
8
9
+CMD ["./fs_tree_manager"]
src/fs_tree_manager/docker-compose.yml
@@ -0,0 +1,13 @@
+services:
+ fs_tree_manager:
+ image: fs_tree_manager:latest
+ volumes:
+ - ./config.yaml:/config.yaml:ro
+ extra_hosts:
+ # Resolve host.docker.internal to the host's gateway IP, works on
+ # linux/macos/windows.
+ - "host.docker.internal:host-gateway"
10
+ restart: on-failure
11
+ mem_limit: 4g
12
+ ports:
13
+ - "50052:50052"
0 commit comments