Snipe-it 504 Gateway Timeout

Hi

I already managed to deploy tons of containers from linuxserver, but I’m getting Gateway Timeout errors after creating the database + tables.

First I used my existing MariaDB container, although all tables were created I received the timeout error during setup. So I thought I use the example of the documentation and used an new mysql container. But the error remains the same (database en tables are created)

docker-compose

version: ‘3’
services:
mysql:
image: mysql:5
container_name: snipe_mysql
restart: unless-stopped
volumes:
- /volume1/docker/mysql:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=snipe
- MYSQL_USER=snipe
- MYSQL_PASSWORD=snipe
- MYSQL_DATABASE=snipe

snipeit:
image: linuxserver/snipe-it
container_name: snipeit
restart: unless-stopped
depends_on:
- mysql
volumes:
- /volume1/docker/snipeit:/config
environment:
- APP_URL=http://192.168.0.4:32802
- MYSQL_PORT_3306_TCP_ADDR=mysql
- MYSQL_PORT_3306_TCP_PORT=3306
- MYSQL_DATABASE=snipe
- MYSQL_USER=snipe
- MYSQL_PASSWORD=snipe
- PGID=100
- PUID=1027
ports:
- “32802:80”

ps: I was not able to create a new tag for this topic, so I took an existing one.

Can be closed, I used the official image and it’s working now