adds context to build infos
Some checks failed
Deploy SvelteKit / deploy (push) Failing after 11s

This commit is contained in:
William Diakite 2025-07-25 15:10:55 -04:00
parent 9842c72d42
commit 9886c23b5a

View file

@ -1,6 +1,9 @@
services:
client:
build: .
build:
context: ./site # or . if youre already inside `site/`
dockerfile: Dockerfile # or whatever the file is called
container_name: alliances-site
restart: unless-stopped
ports:
@ -11,7 +14,11 @@ services:
- /var/run/docker.sock:/var/run/docker.sock
cms:
build: ./cms
container_name: alliances-cms
build:
context: ./cms # or . if youre already inside `site/`
dockerfile: Dockerfile # or whatever the file is called
image: alliances-cms
ports:
- "3001:1111"