![[OCI]wireguard install(ft. docker)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FD5xeO%2FbtsG0VYLMTQ%2FAAAAAAAAAAAAAAAAAAAAAGu_Bjpt4nZZaW3jZqv6FoXPQkk8ZvDLMkewP5OY-v0q%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DvLTC8tsbKfDVeLcpfWfgb%252B4jvfM%253D)
docker-composeversion: "3"services: wireguard: image: linuxserver/wireguard container_name: wireguard cap_add: - NET_ADMIN - SYS_MODULE environment: - PUID=1001 - PGID=1001 - TZ=Asis/Seoul - SERVERPORT=51820 #optional - PEERS=10 #optional - PEERDNS=auto #optional volumes: - ./config:/config - /lib/modules:/lib/modules ports: ..
![[OCI]portainer install(ft. docker)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FccAKzS%2FbtsG498LWla%2FAAAAAAAAAAAAAAAAAAAAALRZlTZtU0affyd6-y4D_2q5z3BggpgbAC2MbQH9uYl_%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3D451ykT4t26H%252FVuqC3e1jep1pDRg%253D)
도커컴포즈version: '3'services: portainer: image : 'portainer/portainer-ce:latest' container_name: portainer volumes: - '/var/run/docker.sock:/var/run/docker.sock' - '~/docker/portainer/volume/data:/data' ports: - '9000:9000'networks: default: external: name: 'npm'
![[OCI]NPM install(ft. docker)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FnmJqq%2FbtsG5Ipi04h%2FAAAAAAAAAAAAAAAAAAAAAC0hLAxJN_PMLXx0cLZu9CY3e-hU-Wdt-a7lyAT6Tp3l%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3D0xEk1N07tPHI716iCVmCupQ6k6U%253D)
NPM용 네트워크 추가ubuntu@ddogan:~$ sudo docker network create npm0fe46e3889d4abba852c068c44e07f93654d05b1f7f65374c8d80a178c8f6a4e ubuntu@ddogan:~$ sudo docker network listNETWORK ID NAME DRIVER SCOPE8aaad9802621 bridge bridge local361243cade04 host host locale6191dc0c61a none null local0fe46e3889d4 npm bridge local 도커 컴포즈 실행version: '3'service..
![[OCI]docker install](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FlUXZK%2FbtsG2oe7VYC%2FAAAAAAAAAAAAAAAAAAAAAB1MVPr42xtniGrNdrxipg_YGg0Ha2OIBk5gfaoRnueO%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DVfBCXZpAz1xpQ%252FOIAPP0Xq5qN28%253D)
도커설치ubuntu@ddogan:~$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -ubuntu@ddogan:~$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"ubuntu@ddogan:~$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpgubuntu@ddogan:~$ sudo apt update..

immich를 빌드할려고 보니 아래와 같이 에러발생하여 컴포즈 업데이트 진행![darksharavim]docker-compose up -d ERROR: The Compose file './docker-compose.yml' is invalid because: 'name' does not match any of the regexes: '^x-' You might be seeing this error because you're using the wrong Compose file version. Either specify a supported version (e.g "2.2" or "3.3") and place your service definitions under the `services` key, or o..