Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion templates/drupal-10/docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
phpfpm:
environment:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal-10/docker-compose.redirect.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
nginx:
labels:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal-10/docker-compose.server.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down
21 changes: 20 additions & 1 deletion templates/drupal-10/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down Expand Up @@ -105,3 +105,22 @@ services:
- "traefik.docker.network=frontend"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME}mail.rule=Host(`mail-${COMPOSE_DOMAIN}`)"
- "traefik.http.services.${COMPOSE_PROJECT_NAME}mail.loadbalancer.server.port=8025"

# Code checks tools
markdownlint:
image: itkdev/markdownlint
profiles:
- dev
volumes:
- ./:/md

prettier:
# Prettier does not (yet, fcf.
# https://github.com/prettier/prettier/issues/15206) have an official
# docker image.
# https://hub.docker.com/r/jauderho/prettier is good candidate (cf. https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc)
image: jauderho/prettier
profiles:
- dev
volumes:
- ./:/work
2 changes: 1 addition & 1 deletion templates/drupal-11/docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
phpfpm:
environment:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal-11/docker-compose.redirect.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
nginx:
labels:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal-11/docker-compose.server.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down
21 changes: 20 additions & 1 deletion templates/drupal-11/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down Expand Up @@ -102,3 +102,22 @@ services:
- "traefik.docker.network=frontend"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME}mail.rule=Host(`mail-${COMPOSE_DOMAIN}`)"
- "traefik.http.services.${COMPOSE_PROJECT_NAME}mail.loadbalancer.server.port=8025"

# Code checks tools
markdownlint:
image: itkdev/markdownlint
profiles:
- dev
volumes:
- ./:/md

prettier:
# Prettier does not (yet, fcf.
# https://github.com/prettier/prettier/issues/15206) have an official
# docker image.
# https://hub.docker.com/r/jauderho/prettier is good candidate (cf. https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc)
image: jauderho/prettier
profiles:
- dev
volumes:
- ./:/work
2 changes: 1 addition & 1 deletion templates/drupal-7/docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
phpfpm:
environment:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal-7/docker-compose.redirect.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
nginx:
labels:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal-7/docker-compose.server.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down
21 changes: 20 additions & 1 deletion templates/drupal-7/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down Expand Up @@ -117,6 +117,25 @@ services:
- drush-cache:/root/.drush
- .:/app

# Code checks tools
markdownlint:
image: itkdev/markdownlint
profiles:
- dev
volumes:
- ./:/md

prettier:
# Prettier does not (yet, fcf.
# https://github.com/prettier/prettier/issues/15206) have an official
# docker image.
# https://hub.docker.com/r/jauderho/prettier is good candidate (cf. https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc)
image: jauderho/prettier
profiles:
- dev
volumes:
- ./:/work

volumes:
# Drush cache volume to persist cache between runs.
drush-cache:
2 changes: 1 addition & 1 deletion templates/drupal-8/docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
phpfpm:
environment:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal-8/docker-compose.redirect.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
nginx:
labels:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal-8/docker-compose.server.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down
21 changes: 20 additions & 1 deletion templates/drupal-8/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down Expand Up @@ -103,3 +103,22 @@ services:
- "traefik.docker.network=frontend"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME}mail.rule=Host(`mail-${COMPOSE_DOMAIN}`)"
- "traefik.http.services.${COMPOSE_PROJECT_NAME}mail.loadbalancer.server.port=8025"

# Code checks tools
markdownlint:
image: itkdev/markdownlint
profiles:
- dev
volumes:
- ./:/md

prettier:
# Prettier does not (yet, fcf.
# https://github.com/prettier/prettier/issues/15206) have an official
# docker image.
# https://hub.docker.com/r/jauderho/prettier is good candidate (cf. https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc)
image: jauderho/prettier
profiles:
- dev
volumes:
- ./:/work
2 changes: 1 addition & 1 deletion templates/drupal-9/docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
phpfpm:
environment:
Expand Down
2 changes: 1 addition & 1 deletion templates/drupal-9/docker-compose.redirect.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
nginx:
labels:
Expand Down
21 changes: 20 additions & 1 deletion templates/drupal-9/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down Expand Up @@ -105,3 +105,22 @@ services:
- "traefik.docker.network=frontend"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME}mail.rule=Host(`mail-${COMPOSE_DOMAIN}`)"
- "traefik.http.services.${COMPOSE_PROJECT_NAME}mail.loadbalancer.server.port=8025"

# Code checks tools
markdownlint:
image: itkdev/markdownlint
profiles:
- dev
volumes:
- ./:/md

prettier:
# Prettier does not (yet, fcf.
# https://github.com/prettier/prettier/issues/15206) have an official
# docker image.
# https://hub.docker.com/r/jauderho/prettier is good candidate (cf. https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc)
image: jauderho/prettier
profiles:
- dev
volumes:
- ./:/work
10 changes: 9 additions & 1 deletion templates/drupal-module/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4

services:
phpfpm:
Expand All @@ -7,6 +7,14 @@ services:
volumes:
- .:/app

# Code checks tools
markdownlint:
image: itkdev/markdownlint
profiles:
- dev
volumes:
- ./:/md

prettier:
# Prettier does not (yet, fcf.
# https://github.com/prettier/prettier/issues/15206) have an official
Expand Down
2 changes: 1 addition & 1 deletion templates/symfony-3/docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
phpfpm:
environment:
Expand Down
2 changes: 1 addition & 1 deletion templates/symfony-3/docker-compose.redirect.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
nginx:
labels:
Expand Down
2 changes: 1 addition & 1 deletion templates/symfony-3/docker-compose.server.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down
21 changes: 20 additions & 1 deletion templates/symfony-3/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down Expand Up @@ -88,3 +88,22 @@ services:
- "traefik.docker.network=frontend"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME}mail.rule=Host(`mail-${COMPOSE_DOMAIN}`)"
- "traefik.http.services.${COMPOSE_PROJECT_NAME}mail.loadbalancer.server.port=8025"

# Code checks tools
markdownlint:
image: itkdev/markdownlint
profiles:
- dev
volumes:
- ./:/md

prettier:
# Prettier does not (yet, fcf.
# https://github.com/prettier/prettier/issues/15206) have an official
# docker image.
# https://hub.docker.com/r/jauderho/prettier is good candidate (cf. https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc)
image: jauderho/prettier
profiles:
- dev
volumes:
- ./:/work
2 changes: 1 addition & 1 deletion templates/symfony-4/docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
phpfpm:
environment:
Expand Down
2 changes: 1 addition & 1 deletion templates/symfony-4/docker-compose.redirect.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
nginx:
labels:
Expand Down
2 changes: 1 addition & 1 deletion templates/symfony-4/docker-compose.server.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down
21 changes: 20 additions & 1 deletion templates/symfony-4/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down Expand Up @@ -88,3 +88,22 @@ services:
- "traefik.docker.network=frontend"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME}mail.rule=Host(`mail-${COMPOSE_DOMAIN}`)"
- "traefik.http.services.${COMPOSE_PROJECT_NAME}mail.loadbalancer.server.port=8025"

# Code checks tools
markdownlint:
image: itkdev/markdownlint
profiles:
- dev
volumes:
- ./:/md

prettier:
# Prettier does not (yet, fcf.
# https://github.com/prettier/prettier/issues/15206) have an official
# docker image.
# https://hub.docker.com/r/jauderho/prettier is good candidate (cf. https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc)
image: jauderho/prettier
profiles:
- dev
volumes:
- ./:/work
2 changes: 1 addition & 1 deletion templates/symfony-6/docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
phpfpm:
environment:
Expand Down
2 changes: 1 addition & 1 deletion templates/symfony-6/docker-compose.redirect.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
services:
nginx:
labels:
Expand Down
2 changes: 1 addition & 1 deletion templates/symfony-6/docker-compose.server.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down
21 changes: 20 additions & 1 deletion templates/symfony-6/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# itk-version: 3.2.3
# itk-version: 3.2.4
networks:
frontend:
external: true
Expand Down Expand Up @@ -85,3 +85,22 @@ services:
- "traefik.docker.network=frontend"
- "traefik.http.routers.${COMPOSE_PROJECT_NAME}mail.rule=Host(`mail-${COMPOSE_DOMAIN}`)"
- "traefik.http.services.${COMPOSE_PROJECT_NAME}mail.loadbalancer.server.port=8025"

# Code checks tools
markdownlint:
image: itkdev/markdownlint
profiles:
- dev
volumes:
- ./:/md

prettier:
# Prettier does not (yet, fcf.
# https://github.com/prettier/prettier/issues/15206) have an official
# docker image.
# https://hub.docker.com/r/jauderho/prettier is good candidate (cf. https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc)
image: jauderho/prettier
profiles:
- dev
volumes:
- ./:/work