Skip to content

Commit

Permalink
Merge branch 'develop' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Cufee committed Jan 18, 2025
2 parents 9f491a1 + 9df1344 commit aa4deb7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion docker-compose.base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ services:
dockerfile: Dockerfile
args:
BRAND_FLAVOR: ${BRAND_FLAVOR}
restart: always
volumes:
- ${DATABASE_PATH}:/data
env_file:
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.dokploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ services:
extends:
file: docker-compose.base.yaml
service: aftermath-collector-base
restart: always
environment:
- COLLECTOR_BACKEND_URL=aftermath-service:${PRIVATE_SERVER_PORT}
networks:
Expand All @@ -19,6 +20,7 @@ services:
extends:
file: docker-compose.base.yaml
service: aftermath-service-base
restart: always
environment:
# the rest is imported from .env, which is going to be created by Dokploy automatically
- PORT=3000 # the port does not matter, but it needs to match Traefik labels. we set it here explicitly in order to avoid any issues
Expand Down
3 changes: 3 additions & 0 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,20 @@ services:
extends:
file: docker-compose.base.yaml
service: aftermath-collector-base
restart: no
command: --backend=aftermath-service:${PRIVATE_SERVER_PORT}

aftermath-migrate:
extends:
file: docker-compose.base.yaml
service: aftermath-migrate-base
restart: no

aftermath-service:
extends:
file: docker-compose.base.yaml
service: aftermath-service-base
restart: no
environment:
# use the default port from .env
- DATABASE_PATH=/data # this is the path inside a container and needs to match the volume mount
Expand Down
4 changes: 2 additions & 2 deletions internal/render/v1/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ var (
TextSubscriptionPlus = color.NRGBA{72, 167, 250, 255}
TextSubscriptionPremium = color.NRGBA{255, 223, 0, 255}

DefaultCardColor = color.NRGBA{10, 10, 10, 180}
DefaultCardColor = color.NRGBA{10, 10, 10, 150}
DefaultCardColorNoAlpha = color.NRGBA{10, 10, 10, 255}
ClanTagBackgroundColor = color.NRGBA{10, 10, 10, 120}
ClanTagBackgroundColor = color.NRGBA{10, 10, 10, 100}

ColorAftermathRed = color.NRGBA{255, 0, 120, 255}
ColorAftermathBlue = color.NRGBA{72, 167, 250, 255}
Expand Down

0 comments on commit aa4deb7

Please sign in to comment.