[OCI]wireguard install(ft. docker)
# Virtualation/Public Cloud2024. 5. 1. 12:30[OCI]wireguard install(ft. docker)

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)
# Virtualation/Public Cloud2024. 4. 30. 15:24[OCI]portainer install(ft. docker)

도커컴포즈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)
# Virtualation/Public Cloud2024. 4. 30. 15:22[OCI]NPM install(ft. docker)

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
# Virtualation/Public Cloud2024. 4. 30. 15:15[OCI]docker install

도커설치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..

docker-compose update
# Virtualation/Docker2024. 4. 28. 12:10docker-compose 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..

image