Hello,

I want to deploy bareos using docker-compose.yml with the "alpine" image on 
arm64 architecture fresh installation. Container "bareos-webui" crashes 
after 1 second with error:

*[...]*


*usr/share/bareos-webui/public/img/favicon.icousr/share/bareos-webui/public/img/bareos-logo-small.pngnginx:
 
[emerg] invalid port in upstream ":" in 
/etc/nginx/conf.d/bareos-webui.conf:16*



*docker-compose.yml*








































































*version: '3'services:  bareos-dir:    image: 
barcus/bareos-director:alpine    container_name: bareos-dir    volumes:    
  - /opt/bareos_dir/conf:/etc/bareos      - 
/opt/bareos_dir/catalog:/var/lib/bareos    environment:      - 
DB_INIT=false      - DB_UPDATE=false      - DB_HOST=bareos-db      - 
DB_PORT=3306      - DB_NAME=bareos      - DB_USER=bareos      - 
DB_PASSWORD=XXX      - DB_ADMIN_USER=XXX      - DB_ADMIN_PASSWORD=XXX      
- BAREOS_FD_HOST=bareos-fd      - BAREOS_FD_PASSWORD=XXX      - 
BAREOS_SD_HOST=bareos-sd      - BAREOS_SD_PASSWORD=XXX      - 
BAREOS_WEBUI_PASSWORD=XXX    depends_on:      - bareos-db  bareos-sd:    
image: barcus/bareos-storage:alpine    container_name: bareos-sd    ports:  
    - 9103:9103    volumes:      - /opt/bareos_sd/conf:/etc/bareos      - 
/opt/bareos_sd/storage:/var/lib/bareos/storage    environment:      - 
BAREOS_SD_PASSWORD=XXX  bareos-fd:    image: barcus/bareos-client:alpine    
container_name: bareos-client    volumes:      - 
/opt/bareos_fd/conf:/etc/bareos      - 
/opt/bareos_fd/catalog:/var/lib/bareos-director    environment:      - 
BAREOS_FD_PASSWORD=XXX      - FORCE_ROOT=false  bareos-webui:    image: 
barcus/bareos-webui:alpine    container_name: bareos-webui    ports:      - 
8080:80    environment:      - BAREOS_DIR_HOST=bareos-dir      - 
SERVER_STATS=yes    volumes:      - 
/opt/bareos_webui/conf:/etc/bareos-webui  bareos-db:    image: 
mysql:latest    container_name: bareos-mysql    volumes:      - 
/opt/bareos_mysql:/var/lib/mysql    environment:      - 
MYSQL_ROOT_PASSWORD=XXX  bareos-api:    image: barcus/bareos-api:alpine    
container_name: bareos-api    ports:    - 8000:8000    environment:    - 
BAREOS_DIR_HOST=bareos-dir*


Anyone can help me?


Best regards,
Martin

-- 
You received this message because you are subscribed to the Google Groups 
"bareos-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/bareos-users/a5ead810-c0b1-4679-809c-61b9fa4071b4n%40googlegroups.com.

Reply via email to