Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

[Bug] compose import not detecting all containers #1823

Open
SX-9 opened this issue May 15, 2024 · 0 comments
Open

[Bug] compose import not detecting all containers #1823

SX-9 opened this issue May 15, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@SX-9
Copy link

SX-9 commented May 15, 2024

Describe the bug

importing a compose file dint import all the containers in the file (only 1)

To Reproduce

  1. import this docker compose:
version: '3.9'

networks:
  guacamole_net:
    driver: bridge

services:
  guacd:
    container_name: guacamole_backend
    image: guacamole/guacd:1.5.3
    networks:
      guacamole_net:
    restart: always
    volumes:
      - /DATA/AppData/guacamole/drive:/drive:rw
      - /DATA/AppData/guacamole/record:/var/lib/guacamole/recordings:rw
postgres:
  container_name: guacamole_database
  environment:
    PGDATA: /var/lib/postgresql/data/guacamole
    POSTGRES_DB: guacamole_db
    POSTGRES_PASSWORD: pg-pw-1234
    POSTGRES_USER: internal
  image: postgres:15.0
  networks:
    guacamole_net:
  restart: always
  volumes:
    - /DATA/AppData/guacamole/init:/docker-entrypoint-initdb.d:ro
    - /DATA/AppData/guacamole/data:/var/lib/postgresql/data:rw

guacamole:
  container_name: guacamole_frontend
  depends_on:
    - guacd
    - postgres
  environment:
    GUACD_HOSTNAME: guacd
    POSTGRESQL_DATABASE: guacamole_db
    POSTGRESQL_HOSTNAME: postgres
    POSTGRESQL_PASSWORD: pg-pw-1234
    POSTGRESQL_USER: internal
    POSTGRESQL_AUTO_CREATE_ACCOUNTS: true
  image: guacamole/guacamole:1.5.3
  links:
    - guacd
  networks:
    - guacamole_net
  ports:
    - 8080:8080
  restart: always
  volumes:
    - /DATA/AppData/guacamole/drive:/drive:rw
    - /DATA/AppData/guacamole/record:/var/lib/guacamole/recordings

Expected behavior

imports all containers mentioned

Screenshots

image
Screenshot from 2024-05-15 07-45-04
Screenshot from 2024-05-15 07-45-16
Screenshot from 2024-05-15 07-45-26

@SX-9 SX-9 added the bug Something isn't working label May 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant