Awesome Docker Compose samples
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
awesome-compose/nginx-aspnet-mysql/.docker/docker-compose.yaml

38 lines
735 B

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