Skip to content

Commit

Permalink
add compose
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Aug 1, 2024
1 parent 55c3e9e commit 1b545e1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
services:
hephaestus-application-server:
image: hephaestus-application-server
build:
context: ./server/application-server
dockerfile: Dockerfile
ports:
- '8080:8080'
environment:
SPRING_PROFILES_ACTIVE: prod
DATABASE_URL: jdbc:postgresql://postgres:5432/hephaestus
DATABASE_USERNAME: root
DATABASE_PASSWORD: root
SECURITY_USER_NAME: admin
SECURITY_USER_PASSWORD: admin_password
depends_on:
- postgres

postgres:
image: 'postgres:latest'
environment:
Expand Down

0 comments on commit 1b545e1

Please sign in to comment.