services: wireguard: image: wg-easy/wg-easy:latest container_name: wireguard ports: - "51820:51820/udp" - "51821:51821/tcp" volumes: - ./wireguard:/etc/wireguard environment: - WG_HOST=your_server_ip - PASSWORD_HASH=$(openssl passwd -1 your_password) - PORT=51821 - WG_PORT=51820 restart: unless-stopped healthcheck: test: ["CMD", "wg", "show"] interval: 30s timeout: 10s retries: 3