diff --git a/config/docker-compose.init.yml b/config/docker-compose.init.yml index 576dd7d..db4c6ad 100644 --- a/config/docker-compose.init.yml +++ b/config/docker-compose.init.yml @@ -1,7 +1,7 @@ services: gitea: image: gitea/gitea:latest - container_name: gitea + container_name: gitea-init restart: always environment: - ROOT_URL=http://${IPV4_ADDRESS}:3000 diff --git a/setup.sh b/setup.sh index 27efd47..5ce1d02 100755 --- a/setup.sh +++ b/setup.sh @@ -33,6 +33,7 @@ else echo "ROOT_URL=http://$IPV4_ADDRESS:3000" >> .env echo "Stopping initial setup container ..." docker compose -f config/docker-compose.init.yml down + docker logs gitea-init echo "Disabling temporary port 3000 ..." sudo ufw delete allow 3000/tcp sudo ufw reload