parent
a4f8723037
commit
f560a6dbe5
@ -1,25 +0,0 @@ |
||||
**/.classpath |
||||
**/.dockerignore |
||||
**/.env |
||||
**/.git |
||||
**/.gitignore |
||||
**/.project |
||||
**/.settings |
||||
**/.toolstarget |
||||
**/.vs |
||||
**/.vscode |
||||
**/*.*proj.user |
||||
**/*.dbmdl |
||||
**/*.jfm |
||||
**/azds.yaml |
||||
**/bin |
||||
**/charts |
||||
**/docker-compose* |
||||
**/Dockerfile* |
||||
**/node_modules |
||||
**/npm-debug.log |
||||
**/obj |
||||
**/secrets.dev.yaml |
||||
**/values.dev.yaml |
||||
LICENSE |
||||
README.md |
@ -1,6 +0,0 @@ |
||||
DATABASE_HOSTNAME=localhost |
||||
DATABASE_PORT=3306 |
||||
DATABASE_NAME=collaborateur_epa |
||||
APP_DB_USERNAME=root |
||||
APP_DB_PASSWORD=root |
||||
APP_DB_ROOT_PASSWORD=root |
@ -1,19 +0,0 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<Project ToolsVersion="15.0" Sdk="Microsoft.Docker.Sdk"> |
||||
<PropertyGroup Label="Globals"> |
||||
<ProjectVersion>2.1</ProjectVersion> |
||||
<DockerTargetOS>Linux</DockerTargetOS> |
||||
<ProjectGuid>815b6abd-7550-4d79-a53b-e84f4d4a7475</ProjectGuid> |
||||
<DockerLaunchAction>LaunchBrowser</DockerLaunchAction> |
||||
<DockerServiceUrl>{Scheme}://localhost:{ServicePort}/swagger</DockerServiceUrl> |
||||
<DockerServiceName>espacecollab.backend.api</DockerServiceName> |
||||
</PropertyGroup> |
||||
<ItemGroup> |
||||
<None Include="docker-compose.override.yml"> |
||||
<DependentUpon>docker-compose.yml</DependentUpon> |
||||
</None> |
||||
<None Include="docker-compose.yml" /> |
||||
<None Include=".dockerignore" /> |
||||
<None Include=".env" /> |
||||
</ItemGroup> |
||||
</Project> |
@ -1,11 +0,0 @@ |
||||
version: '3.4' |
||||
|
||||
services: |
||||
espacecollab.backend.api: |
||||
environment: |
||||
- ASPNETCORE_ENVIRONMENT=Development |
||||
- ASPNETCORE_URLS=https://+:443;http://+:80 |
||||
- ASPNETCORE_Kestrel__Certificates__Default__Password=password |
||||
- ASPNETCORE_Kestrel__Certificates__Default__Path=/https/aspnetapp.pfx |
||||
volumes: |
||||
- ~/.aspnet/https:/https:ro |
@ -1,37 +0,0 @@ |
||||
version: '3.4' |
||||
|
||||
volumes: |
||||
data-volume: {} |
||||
|
||||
services: |
||||
|
||||
db: |
||||
image: "mariadb:10.7.1" |
||||
restart: always |
||||
environment: |
||||
- MYSQL_DATABASE=${DATABASE_NAME} |
||||
- MYSQL_USERNAME=${APP_DB_USERNAME} |
||||
- MYSQL_PASSWORD=${APP_DB_PASSWORD} |
||||
- MYSQL_ROOT_PASSWORD=${APP_DB_ROOT_PASSWORD} |
||||
volumes: |
||||
- data-volume:/var/lib/mysql |
||||
- ./init_db.sql:/docker-entrypoint-initdb.d/init.sql |
||||
|
||||
espacecollab.backend.api: |
||||
image: ${DOCKER_REGISTRY-}espacecollabbackendapi |
||||
build: |
||||
context: . |
||||
dockerfile: espacecollab.backend.api/Dockerfile |
||||
ports: |
||||
- "5000:80" |
||||
- "5001:443" |
||||
links: |
||||
- db |
||||
environment: |
||||
- DATABASE_HOSTNAME=db |
||||
- DATABASE_PORT=3306 |
||||
- DATABASE_NAME=${DATABASE_NAME} |
||||
- DATABASE_USERNAME=${APP_DB_USERNAME} |
||||
- DATABASE_PASSWORD=${APP_DB_PASSWORD} |
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 114 KiB |
Before Width: | Height: | Size: 91 KiB |
Before Width: | Height: | Size: 189 KiB |
Before Width: | Height: | Size: 186 KiB |
Before Width: | Height: | Size: 94 KiB |
Before Width: | Height: | Size: 176 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue