Skip to content

Commit

Permalink
remove Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Mar 29, 2024
1 parent 1dacc6a commit 3d4caee
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 36 deletions.
26 changes: 14 additions & 12 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ services:
- mobile

api_docs:
build:
context: docker
dockerfile: api-docs.Dockerfile
image: node:20.11.1-alpine3.19
working_dir: /api/doc
entrypoint: ["/bin/sh", "-c", "npm install && npm run serve -- --host=0.0.0.0"]
restart: unless-stopped
ports:
- 8089:8089
Expand Down Expand Up @@ -113,10 +113,12 @@ services:
- pgn-viewer

lila_engine:
build:
context: docker
dockerfile: lila-engine.Dockerfile
image: rust:1.76.0-slim-bookworm
working_dir: /lila-engine
entrypoint: cargo run -- --bind 0.0.0.0:9666 --mongodb mongodb://mongodb
restart: unless-stopped
environment:
- LILA_ENGINE_LOG=lila_engine=debug,tower_http=debug
networks:
- lila-network
ports:
Expand Down Expand Up @@ -231,9 +233,9 @@ services:
- search

lila_gif:
build:
context: docker
dockerfile: lila-gif.Dockerfile
image: rust:1.76.0-slim-bookworm
working_dir: /lila-gif
entrypoint: cargo run -- --bind 0.0.0.0:6175
restart: unless-stopped
ports:
- 6175:6175
Expand All @@ -245,16 +247,16 @@ services:
- gifs

picfit:
build:
context: docker
dockerfile: picfit.Dockerfile
image: carbrex/thoas-picfit:latest
entrypoint: /picfit -c /mnt/config.json
restart: unless-stopped
ports:
- 3001:3001
networks:
- lila-network
volumes:
- ./conf/picfit.json:/mnt/config.json
- ./docker/assets:/uploads
profiles:
- thumbnails

Expand Down
5 changes: 0 additions & 5 deletions docker/api-docs.Dockerfile

This file was deleted.

4 changes: 3 additions & 1 deletion docker/chessground.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ RUN npm install -g pnpm

WORKDIR /chessground

ENTRYPOINT pnpm install && pnpm run compile && pnpx http-server -p 8080
ENTRYPOINT pnpm install \
&& pnpm run compile \
&& pnpx http-server -p 8080
7 changes: 0 additions & 7 deletions docker/lila-engine.Dockerfile

This file was deleted.

5 changes: 0 additions & 5 deletions docker/lila-gif.Dockerfile

This file was deleted.

6 changes: 0 additions & 6 deletions docker/picfit.Dockerfile

This file was deleted.

0 comments on commit 3d4caee

Please sign in to comment.