Docker + nginx + MySQL + PHP
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.
|
version: "3.8" |
|
services: |
|
redis: |
|
image: redis:6.2.6-alpine |
|
container_name: redis |
|
# user: "${USER_ID}:${GROUP_ID}" |
|
network_mode: "host" |
|
restart: always |
|
volumes: |
|
- ./data:/data |
|
- ./data/redis.conf:/data/redis.conf |
|
command: ["redis-server", "/data/redis.conf"]
|
|
|