반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- bucket cors
- NUXT
- error
- kotlin
- bucket max-key
- vuejs
- Android
- v-select
- CSS
- naver storage
- v-text-field height
- f035d
- Vuetify
- naver storage bucket error
- Vue
- onsen-ui
- 동일 프로그램
- sequelize
- vuetifyjs
- c#
- nodejs
- 프로세스 방지
- 동일 프로세스
- xlsx
- MySQL
- Electron
- onsenui
- JavaScript
- electron-nuxt
- sort
Archives
- Today
- Total
목록docker compose (1)
앙큼한 개발기록
<M1> docker compose 실행
일반적인 윈도우와 맥에서는 platform을 설정하지 않아도 도커이미지 파일을 실행할수 있으나 M1 에서는 platform을 선언하지 않으면 실행이 안됨. 아래는 내가 맨날 복사해서 사용하는 docker-compose.db.yml 파일 내용. version: '3' services: mysql: image: mysql:latest container_name: [container name] platform: linux/amd64 // 플랫폼이 추가됨 restart: always command: --default-authentication-plugin=mysql_native_password --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_..
개발
2022. 6. 5. 23:01