Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit ec8180a

Browse files
committed
fix: rename application service and update Docker image version to 'v1'
1 parent 22d4b97 commit ec8180a

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

compose.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ services:
1616
- stego-network
1717

1818
# Application Service
19-
app:
19+
stego-app:
2020
# Use the image built by the Spring Boot Maven plugin
21-
image: docker.io/noobdevsam/spring-project-steganography-tool:v2
21+
image: docker.io/noobdevsam/spring-project-steganography-tool:v1
2222
container_name: stego-app
2323
ports:
2424
- "8080:8080"
@@ -33,8 +33,9 @@ services:
3333
# Other environment variables as needed
3434
- JAVA_TOOL_OPTIONS=-XX:MaxRAMPercentage=75.0
3535
volumes:
36-
# Mount the local storage directory into the container to persist files
37-
- storage_data:/app/storage
36+
# Mount the local './storage' directory into the container.
37+
# This makes it easy to see generated files on your host machine.
38+
- ./storage:/app/storage
3839
networks:
3940
- stego-network
4041
depends_on:
@@ -47,5 +48,3 @@ networks:
4748
volumes:
4849
mysql_data:
4950
driver: local
50-
storage_data:
51-
driver: local

0 commit comments

Comments
 (0)