]> Untitled Git - godot-builder.git/blobdiff - docker-compose.yml
Squashed commit of the following:
[godot-builder.git] / docker-compose.yml
index f13049edfa8256db88968963be01a1ac32af77d0..5533030f4cd7084ee4202147134a89877bc8f728 100644 (file)
@@ -1,20 +1,30 @@
 version: '3'
 services:
     web:
-        image: nginx:1.27-alpine
+        build: ./nginx
+        image: cjpalmer/godot-web:$DOCKER_TAG
         volumes:
         - ./nginx/conf.d/:/etc/nginx/conf.d/
         - godot-build-dev:/build
+        depends_on:
+        - redis
         ports:
         - 80:80
     redis:
         image: redis:alpine
+    hook:
+        build: ./hook
+        image: cjpalmer/godot-webhook:$DOCKER_TAG
+        depends_on:
+        - redis
     builder:
         build: ./builder
-        image: cjpalmer/godot-builder:0.3.0
+        image: cjpalmer/godot-builder:$DOCKER_TAG
         volumes:
         - godot-build-dev:/build
         - godot-project:/project
+        depends_on:
+        - redis
 volumes:
     godot-build-dev:
         driver: local