Skip to content

Commit

Permalink
Agregando Docker Compose
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-alvarez19 committed Apr 28, 2024
1 parent acf6177 commit 7af6d0f
Show file tree
Hide file tree
Showing 25 changed files with 390 additions and 279 deletions.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

37 changes: 37 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
version: '3'

services:
sonarqube:
image: sonarqube:latest
container_name: sonarqube
ports:
- "9000:9000"
environment:
- SONARQUBE_JDBC_USERNAME=sonarqube
- SONARQUBE_JDBC_PASSWORD=sonarqube
- SONARQUBE_JDBC_URL=jdbc:postgresql://sonarqube-db:5432/sonarqube
networks:
- sonarqube-network
depends_on:
- sonarqube-db

sonarqube-db:
image: postgres:alpine
container_name: sonarqube-db
environment:
- POSTGRES_USER=sonarqube
- POSTGRES_PASSWORD=sonarqube
- POSTGRES_DB=sonarqube
networks:
- sonarqube-network
volumes:
- sonarqube-db-data:/var/lib/postgresql/data

networks:
sonarqube-network:
driver: bridge

volumes:
sonarqube-db-data:
driver: local

283 changes: 283 additions & 0 deletions logs/FXGL-19-abr-2024-04.28.25.log

Large diffs are not rendered by default.

279 changes: 0 additions & 279 deletions logs/FXGL-28-nov-2023-06.49.13.log

This file was deleted.

3 changes: 3 additions & 0 deletions target/classes/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: game.spaceinvaders.SpaceInvadersApplication

Binary file added target/classes/assets/textures/explosion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added target/classes/assets/textures/icons/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file added target/classes/game/spaceinvaders/GameUI.class
Binary file not shown.
Binary file added target/classes/game/spaceinvaders/Player.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added target/classes/game/spaceinvaders/Time.class
Binary file not shown.
Binary file added target/classes/game/spaceinvaders/background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added target/classes/game/spaceinvaders/explosion.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added target/classes/game/spaceinvaders/meteors.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added target/classes/game/spaceinvaders/missil.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added target/classes/game/spaceinvaders/ship.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added target/classes/module-info.class
Binary file not shown.

0 comments on commit 7af6d0f

Please sign in to comment.