Skip to content

Commit 1297105

Browse files
committed
fix: update docker-compose to clarify database dependency and add NEO_API environment variable
1 parent 1e73b82 commit 1297105

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

netapp-neo/dist/docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ services:
3434
restart: unless-stopped
3535
networks:
3636
- netapp-neo
37-
depends_on:
38-
- db # Ensure the database starts before NEO - Remove this line if you're using an existing database externally
37+
depends_on: # Ensure the database starts before NEO - Remove this section if you're using an existing database externally
38+
- db
3939

4040
neoui:
4141
image: ghcr.io/beezy-dev/neo-ui-framework:3.0.4-2
4242
container_name: neoui
4343
ports:
4444
- "8080:80"
4545
environment:
46-
- NEO_API=http://neo:8080 # ← add this
46+
- NEO_API=http://neo:8080
4747
networks:
4848
- netapp-neo
4949
restart: unless-stopped
@@ -54,5 +54,5 @@ networks:
5454
netapp-neo:
5555
driver: bridge
5656

57-
volumes:
57+
volumes: # Remove this section if you're using an external database
5858
postgres_data:

0 commit comments

Comments
 (0)