forked from docker/awesome-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nginx-aspnet-mysql: add dev envs configuration (docker#267)
* nginx-aspnet-mysql: add dev envs configuration * Fix/enable MySQL/MariaDB health check * Refactor `Dockerfile` for use as Compose app as well as with dev envs * nginx-aspnet-mysql: remove DB healthcheck from dev envs config Signed-off-by: Milas Bowman <milas.bowman@docker.com>
- Loading branch information
Showing
4 changed files
with
101 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
services: | ||
backend: | ||
build: | ||
context: backend | ||
target: dev-envs | ||
restart: always | ||
secrets: | ||
- db-password | ||
depends_on: ['db'] | ||
environment: | ||
- ASPNETCORE_URLS=http://+:8000 | ||
volumes: | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
|
||
db: | ||
image: mariadb:10-focal | ||
command: '--default-authentication-plugin=mysql_native_password' | ||
restart: always | ||
secrets: | ||
- db-password | ||
volumes: | ||
- db-data:/var/lib/mysql | ||
environment: | ||
- MYSQL_DATABASE=example | ||
- MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db-password | ||
|
||
proxy: | ||
build: proxy | ||
ports: | ||
- 80:80 | ||
depends_on: | ||
- backend | ||
|
||
volumes: | ||
db-data: | ||
secrets: | ||
db-password: | ||
file: db/password.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,42 @@ | ||
# syntax=docker/dockerfile:1.4 | ||
|
||
FROM mcr.microsoft.com/dotnet/aspnet:6.0 as base | ||
WORKDIR /app | ||
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:6.0 AS base | ||
|
||
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build | ||
COPY . /src | ||
WORKDIR /src | ||
RUN ls | ||
RUN dotnet build "aspnetapp.csproj" -c Release -o /app/build | ||
|
||
FROM build AS publish | ||
RUN dotnet publish "aspnetapp.csproj" -c Release -o /app/publish | ||
COPY aspnetapp.csproj ./ | ||
RUN ["dotnet", "restore"] | ||
|
||
FROM base as builder | ||
|
||
COPY . . | ||
|
||
CMD ["dotnet", "build", "-c", "-o", "/build"] | ||
|
||
FROM builder as dev-envs | ||
|
||
RUN <<EOF | ||
apt-get update | ||
apt-get install -y git | ||
EOF | ||
|
||
RUN <<EOF | ||
useradd -s /bin/bash -m vscode | ||
groupadd docker | ||
usermod -aG docker vscode | ||
EOF | ||
# install Docker tools (cli, buildx, compose) | ||
COPY --from=gloursdocker/docker / / | ||
|
||
CMD ["dotnet", "run"] | ||
|
||
FROM builder AS publisher | ||
|
||
RUN ["dotnet", "publish", "-c", "Release", "-o", "/build"] | ||
|
||
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/aspnet:6.0 | ||
|
||
FROM base AS final | ||
WORKDIR /app | ||
COPY --from=publish /app/publish . | ||
ENTRYPOINT ["dotnet", "aspnetapp.dll"] | ||
COPY --from=publisher /build . | ||
|
||
CMD ["dotnet", "aspnetapp.dll"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters