Skip to content

Commit 13cc8ec

Browse files
committed
chore: mysql8 fixed mbind
1 parent a2e8095 commit 13cc8ec

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

docker-compose.yml.example

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ services:
1717
networks:
1818
- default
1919
restart: unless-stopped
20-
security_opt:
21-
- seccomp:unconfined
2220
logging:
2321
driver: "json-file"
2422
options:
@@ -41,8 +39,6 @@ services:
4139
networks:
4240
- default
4341
restart: unless-stopped
44-
security_opt:
45-
- seccomp:unconfined
4642
logging:
4743
driver: "json-file"
4844
options:
@@ -81,7 +77,7 @@ services:
8177
hostname: redis
8278
ports:
8379
- "${REDIS_HOST_PORT}:6379"
84-
command: ["redis-server", "/etc/redis.conf"]
80+
command: [ "redis-server", "/etc/redis.conf" ]
8581
networks:
8682
- default
8783
restart: unless-stopped
@@ -116,7 +112,7 @@ services:
116112
hostname: memcached
117113
ports:
118114
- "${MEMCACHED_HOST_PORT}:11211"
119-
command: ["memcached", "-m", "${MEMCACHED_MEMORY}"]
115+
command: [ "memcached", "-m", "${MEMCACHED_MEMORY}" ]
120116
networks:
121117
- default
122118
restart: unless-stopped
@@ -303,7 +299,7 @@ services:
303299
hostname: mongodb
304300
ports:
305301
- "${MONGODB_HOST_PORT}:27017"
306-
command: ["--config", "/etc/mongo/mongod.conf"]
302+
command: [ "--config", "/etc/mongo/mongod.conf" ]
307303
networks:
308304
- default
309305
restart: unless-stopped
@@ -379,4 +375,4 @@ services:
379375

380376
networks:
381377
default:
382-
driver: bridge
378+
driver: bridge

0 commit comments

Comments
 (0)