Browse Source
Bugfix/Set stack and container names in docker-compose files (#4005)
* Set stack and container names in docker-compose files
pull/4010/head
Thomas Kaul
3 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
2 deletions
-
docker/docker-compose.build.yml
-
docker/docker-compose.yml
|
@ -2,7 +2,7 @@ name: ghostfolio_build |
|
|
services: |
|
|
services: |
|
|
ghostfolio: |
|
|
ghostfolio: |
|
|
build: ../ |
|
|
build: ../ |
|
|
container_name: gf-application-build |
|
|
container_name: ghostfolio-build |
|
|
init: true |
|
|
init: true |
|
|
env_file: |
|
|
env_file: |
|
|
- ../.env |
|
|
- ../.env |
|
|
|
@ -2,7 +2,7 @@ name: ghostfolio |
|
|
services: |
|
|
services: |
|
|
ghostfolio: |
|
|
ghostfolio: |
|
|
image: docker.io/ghostfolio/ghostfolio:latest |
|
|
image: docker.io/ghostfolio/ghostfolio:latest |
|
|
container_name: gf-application |
|
|
container_name: ghostfolio |
|
|
init: true |
|
|
init: true |
|
|
cap_drop: |
|
|
cap_drop: |
|
|
- ALL |
|
|
- ALL |
|
|