-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yaml
41 lines (40 loc) · 1018 Bytes
/
docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
networks:
azuriom:
driver: bridge
volumes:
database:
azuriom_data:
azuriom_vhost:
azuriom_ssl:
services:
azuriom:
image: ghcr.io/idotek/azuriom-image:main
ports:
- 8080:80
environment:
DB_HOST: database
DB_DATABASE: azuriom
DB_USERNAME: root
DB_PASSWORD: password
MAIL_FROM_ADDRESS: [email protected]
WEB_DOMAIN: your-domain.local
TLS_ENABLED: "False"
TLS_CERTIFICATE_FULLCHAIN_NAME: "fullchain.pem"
TLS_CERTIFIATE_PRIVKEY_NAME: "privkey.key"
ADMIN_USERNAME: "username"
ADMIN_EMAIL: "[email protected]" ## Password would be print in logs, please check `docker compose logs`
volumes:
- azuriom_data:/data
- azuriom_vhost:/etc/nginx/sites-enabled
- azuriom_ssl:/etc/nginx/ssl
networks:
- azuriom
database:
image: mysql:latest
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: azuriom
volumes:
- database:/var/lib/mysql
networks:
- azuriom