Skip to content
Discussion options

You must be logged in to vote

To me succeeded fix this problem by removing docker dind from docker-compose and connect docker.sock directly

After reboot now good working

Maybe someone also come in handy

fixed docker-compose.yml

version: '3.7'
services:
  app_proxy:
    environment:
      APP_HOST: portainer_portainer_1
      APP_PORT: 9000
    container_name: portainer_app_proxy_1

  portainer:
    image: portainer/portainer-ee
    command: '--host unix:///var/run/docker.sock --admin-password-file=/default-password'
    restart: on-failure
    volumes:
      - ${APP_DATA_DIR}/default-password:/default-password
      - ${APP_DATA_DIR}/data/portainer:/data
      - /var/run/docker.sock:/var/run/docker.sock
    container_…

Replies: 2 comments 7 replies

Comment options

You must be logged in to vote
1 reply
@DaniilL12321
Comment options

Comment options

You must be logged in to vote
6 replies
@DaniilL12321
Comment options

@Maxxxel
Comment options

@Maxxxel
Comment options

@DaniilL12321
Comment options

@baukeposthuma
Comment options

Answer selected by DaniilL12321
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
4 participants