Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

manifest unknown #6503

Closed
amnah96 opened this issue Nov 8, 2023 · 1 comment
Closed

manifest unknown #6503

amnah96 opened this issue Nov 8, 2023 · 1 comment

Comments

@amnah96
Copy link

amnah96 commented Nov 8, 2023

I have tried last week to run a docker-compose on my computer to connect my Python code.

$ version: '3.6'
services:
  python:
    build:
      context: .  # This should point to the directory containing your Dockerfile
    container_name: influxdb_ki
    restart: always
    ports:
      - "80:80"
    depends_on:
      - influxdb  # Ensure your app starts after InfluxDB
    networks:
      - monitoring
    image: mydockerhub/projectname:python-service  # Replace with your Docker Hub username and repo

  grafana:
    image: grafana/grafana  # Correct image name
    container_name: grafana
    restart: always
    ports:
      - "3000:3000"
    networks:
      - monitoring
    volumes:
      - grafana-volume:/var/lib/grafana

  influxdb:
    image: mydockerhub/projectname:influxdb-service  # Replace with your Docker Hub username and repo
    container_name: influxdb
    ports:
      - "8087:8086"
    networks:
      - monitoring
    volumes:
      - influxdb-volume:/var/lib/influxdb
    environment:
      - INFLUXDB_DB=mydb
      - INFLUXDB_ADMIN_USER=admin
      - INFLUXDB_ADMIN_PASSWORD=adminpass
      - INFLUXDB_USER=user
      - INFLUXDB_USER_PASSWORD=password
      - INFLUXDB_INIT_MODE=setup
      - INFLUXDB_INIT_ORG=sth
      - INFLUXDB_INIT_BUCKET=sth
      - INFLUXDB_INIT_RETENTION=myretention
      - INFLUXDB_ADMIN_TOKEN=myadmintoken
    restart: always
networks:
  monitoring:
volumes:
  grafana-volume:
    external: true
  influxdb-volume:
    external: true



this code worked last week but when I tried to change the python code and do the same process I am receiving the following error:
sudo docker-compose up
Pulling influxdb (mydockerhub/projectname:influxdb-service)...

ERROR: manifest for mydockerhub/projectname:influxdb-service not found: manifest unknown: manifest unknown

Please help me to find out how can I

Copy link

github-actions bot commented Nov 8, 2023

New issues are no longer accepted in this repository. If singularity --version says singularity-ce, submit instead to https://github.com/sylabs/singularity, otherwise submit to https://github.com/apptainer/apptainer.

@github-actions github-actions bot closed this as completed Nov 8, 2023
@github-actions github-actions bot locked and limited conversation to collaborators Nov 8, 2023
# for free to subscribe to this conversation on GitHub. Already have an account? #.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant