Remove unused docker stuff

This commit is contained in:
2026-02-21 16:02:14 +01:00
parent a6bdd94cbf
commit 2a3bbf8837
2 changed files with 0 additions and 64 deletions
-12
View File
@@ -1,12 +0,0 @@
FROM gcc:latest AS build
WORKDIR /build
COPY src/ src/
COPY include/ include/
COPY quakey/ quakey/
COPY Makefile .
RUN make toastyfs
FROM debian:bookworm-slim
RUN mkdir -p /data
COPY --from=build /build/toastyfs /usr/local/bin/toastyfs
ENTRYPOINT ["toastyfs"]
-52
View File
@@ -1,52 +0,0 @@
services:
node1:
build: .
command:
- "--addr"
- "172.20.0.11:8080"
- "--peer"
- "172.20.0.12:8080"
- "--peer"
- "172.20.0.13:8080"
networks:
cluster:
ipv4_address: 172.20.0.11
ports:
- "8081:8080"
node2:
build: .
command:
- "--addr"
- "172.20.0.12:8080"
- "--peer"
- "172.20.0.11:8080"
- "--peer"
- "172.20.0.13:8080"
networks:
cluster:
ipv4_address: 172.20.0.12
ports:
- "8082:8080"
node3:
build: .
command:
- "--addr"
- "172.20.0.13:8080"
- "--peer"
- "172.20.0.11:8080"
- "--peer"
- "172.20.0.12:8080"
networks:
cluster:
ipv4_address: 172.20.0.13
ports:
- "8083:8080"
networks:
cluster:
driver: bridge
ipam:
config:
- subnet: 172.20.0.0/24