docker works

This commit is contained in:
2025-12-26 22:07:56 -05:00
parent 73ac756ade
commit c420e2797b
3 changed files with 15 additions and 16 deletions

9
docker-compose.yml Normal file
View File

@@ -0,0 +1,9 @@
services:
fsd:
build: fsd.vxserver.dev
ports:
- "2100:2100"
docs:
build: docs.vxserver.dev
ports:
- "2101:2101"

View File

@@ -1,12 +1,7 @@
FROM fedora:43
RUN curl -fsSL https://git.vxserver.dev/fSD/fports/raw/branch/main/x86_64/fes -o /usr/local/bin/fes \
&& chmod +x /usr/local/bin/fes
WORKDIR /app
FROM fes:latest
COPY . /app
EXPOSE 2101
WORKDIR /app
CMD ["sh", "-c", "/usr/local/bin/fes -p 2101 run ."]
CMD ["fes", "-p", "2101", "run", "/app"]

View File

@@ -1,12 +1,7 @@
FROM fedora:43
RUN curl -fsSL https://git.vxserver.dev/fSD/fports/raw/branch/main/x86_64/fes -o /usr/local/bin/fes \
&& chmod +x /usr/local/bin/fes
WORKDIR /app
FROM fes:latest
COPY . /app
EXPOSE 2100
WORKDIR /app
CMD ["sh", "-c", "/usr/local/bin/fes -p 2100 run ."]
CMD ["fes", "-p", "2100", "run", "/app"]