Skip to content
Closed
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 1/fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ WORKDIR /var/www/html
ENV BACKDROP_VERSION=1.29.2
ENV BACKDROP_MD5=dcb27feb72d78f1f14120d4c9a6bc70b

RUN curl -fSL "https://github.com/backdrop/backdrop/archive/${BACKDROP_VERSION}.tar.gz" -o backdrop.tar.gz \
RUN curl -fSL "https://github.com/backdrop/backdrop/archive/refs/tags/${BACKDROP_VERSION}.tar.gz" -o backdrop.tar.gz \
&& echo "${BACKDROP_MD5} *backdrop.tar.gz" | md5sum -c - \
&& tar -xz --strip-components=1 -f backdrop.tar.gz \
&& rm backdrop.tar.gz \
Expand Down
9 changes: 9 additions & 0 deletions docker-compose.yml → compose.apache.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: docker-evaluation
services:
backdrop:
build:
Expand All @@ -8,6 +9,10 @@ services:
BACKDROP_DB_HOST: db
BACKDROP_DB_USER: backdrop
BACKDROP_DB_PASSWORD: backdrop
depends_on:
db:
condition: service_healthy
restart: true

db:
image: mysql
Expand All @@ -16,3 +21,7 @@ services:
MYSQL_PASSWORD: backdrop
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_DATABASE: backdrop
healthcheck:
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
timeout: 6s
retries: 10
1 change: 1 addition & 0 deletions compose.yml
Loading