Unable to run Gluetun container in Azure Container Instances #2205
Unanswered
amalkyOneStone
asked this question in
Q&A
Replies: 1 comment 1 reply
-
I also tried using ' - "443:443/tcp" ' |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have this docker-compose file that I want to use the command "docker-compose up" to deploy two container to Azure Container Instance. However, the gluetun container does not run and stays in "waiting" state. There are no logs or errors I can see in Azure portal or Az cli.
`version: '3.8'
x-azure-settings:
acr-credentials:
- server: .azurecr.io
username:
password:
services:
vpn-username:
image: qmcgaw/gluetun
deploy:
resources:
limits:
cpus: '0.5'
memory: 1024M
ports:
- "1194:1194/udp"
cap_add:
- NET_ADMIN
environment:
- VPNSP=protonvpn
- OPENVPN_USER=
- OPENVPN_PASSWORD=
- SERVER_COUNTRIES=Netherlands
script-runner-username:
image: .azurecr.io/:latest
deploy:
resources:
limits:
cpus: '0.1'
memory: 100M
depends_on:
- vpn-username
network_mode: service:vpn-username
command: python fetchip.py`
Beta Was this translation helpful? Give feedback.
All reactions