Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 21 additions & 7 deletions compose.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,29 @@
services:
postgres-database:
image: 'postgres:latest'
image: 'postgres:15'
container_name: postgres-database
environment:
- 'POSTGRES_DB=acm'
- 'POSTGRES_PASSWORD=acmheads'
- 'POSTGRES_USER=acmsecy'
- POSTGRES_DB=acm
- POSTGRES_USER=acmsecy
- POSTGRES_PASSWORD=acmheads
ports:
- '5432:5432'
- "5432:5432"
volumes:
- db-data:/var/lib/backup/data
- db-data:/var/lib/postgresql/data

backend:
image: pecacm/acm-website:1.1.12
container_name: acm-backend
environment:
- POSTGRESQL_DB_URL=jdbc:postgresql://postgres-database:5432/acm
- POSTGRESQL_DB_USER=acmsecy
- POSTGRESQL_DB_PASSWORD=acmheads
- [email protected]
- SMTP_PASSWORD=yourpassword
ports:
- "8080:8080"
depends_on:
- postgres-database

volumes:
db-data:
db-data:
Binary file modified target/backend-1.0.1.jar
Binary file not shown.
Binary file modified target/backend-1.0.1.jar.original
Binary file not shown.