Cleanup image building code, refactored, fewer exposed ports, templated files in runtime

This commit is contained in:
2024-06-30 10:18:51 -03:00
parent 4a6d77d0f4
commit 6a678944a0
7 changed files with 70 additions and 56 deletions

View File

@ -3,7 +3,7 @@ build: shard.yml $(wildcard src/**/*cr)
proxy-image: build
docker build . -t faaso-proxy --no-cache
start-proxy:
docker run --network=faaso-net -v /var/run/docker.sock:/var/run/docker.sock -p 8888:8888 -p 3000:3000 faaso-proxy
docker run --network=faaso-net -v /var/run/docker.sock:/var/run/docker.sock -p 8888:8888 faaso-proxy
.PHONY: build proxy-image start-proxy