You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
942 B
YAML
41 lines
942 B
YAML
5 years ago
|
services:
|
||
|
backend:
|
||
|
build: backend
|
||
|
secrets:
|
||
5 years ago
|
- db-password
|
||
4 years ago
|
depends_on:
|
||
|
db:
|
||
|
condition: service_healthy
|
||
5 years ago
|
db:
|
||
3 years ago
|
# We use a mariadb image which supports both amd64 & arm64 architecture
|
||
|
image: mariadb:10.6.4-focal
|
||
|
# If you really want to use MySQL, uncomment the following line
|
||
|
#image: mysql:8.0.27
|
||
5 years ago
|
command: '--default-authentication-plugin=mysql_native_password'
|
||
5 years ago
|
restart: always
|
||
4 years ago
|
healthcheck:
|
||
|
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "--silent"]
|
||
|
interval: 3s
|
||
|
retries: 5
|
||
|
start_period: 30s
|
||
5 years ago
|
secrets:
|
||
5 years ago
|
- db-password
|
||
5 years ago
|
volumes:
|
||
5 years ago
|
- db-data:/var/lib/mysql
|
||
|
environment:
|
||
|
- MYSQL_DATABASE=example
|
||
|
- MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db-password
|
||
4 years ago
|
expose:
|
||
|
- 3306
|
||
5 years ago
|
proxy:
|
||
|
build: proxy
|
||
|
ports:
|
||
5 years ago
|
- 80:80
|
||
5 years ago
|
depends_on:
|
||
5 years ago
|
- backend
|
||
5 years ago
|
volumes:
|
||
5 years ago
|
db-data:
|
||
5 years ago
|
secrets:
|
||
|
db-password:
|
||
|
file: db/password.txt
|