-
-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathdocker-compose.production.yml
41 lines (38 loc) · 1.09 KB
/
docker-compose.production.yml
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
---
services:
# --- LinkAce
app:
image: docker.io/linkace/linkace:latest
restart: unless-stopped
depends_on:
- db
ports:
- "0.0.0.0:80:80"
# Remove the hash of the following line if you want to use HTTPS for this container
#- "0.0.0.0:443:443"
volumes:
- ./.env:/app/.env
#- ./backups:/app/storage/app/backups
# Remove the hash of the following lines if you want to use HTTPS for this container
#- ./caddy-data:/home/www-data/.local/share/caddy
#- ./ssl.Caddyfile:/etc/caddy/Caddyfile
# --- Database
db:
image: docker.io/library/mariadb:11.5
restart: unless-stopped
command: mariadbd --character-set-server=utf8mb4 --collation-server=utf8mb4_bin
environment:
- MYSQL_ROOT_PASSWORD=${DB_PASSWORD}
- MYSQL_USER=${DB_USERNAME}
- MYSQL_PASSWORD=${DB_PASSWORD}
- MYSQL_DATABASE=${DB_DATABASE}
volumes:
- db:/var/lib/mysql
# --- Cache
redis:
image: docker.io/bitnami/redis:7.4
restart: unless-stopped
environment:
- REDIS_PASSWORD=${REDIS_PASSWORD}
volumes:
db: