Skip to content
Snippets Groups Projects
Unverified Commit 6c750340 authored by Giorgio Sironi's avatar Giorgio Sironi Committed by GitHub
Browse files

Avoid clash in image names (#5)

We are currently pushing the `test` image because
```
docker-compose -f docker-compose.yaml -f docker-compose.test.yaml build
```
overwrites the local `prod` image previously generated with the same name.
parent 39c3834a
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ services:
app:
build:
target: dev
image: libero/content-store_dev:${IMAGE_TAG:-master}
volumes:
- ./:/app
- /app/var
......
......@@ -4,3 +4,4 @@ services:
app:
build:
target: test
image: libero/content-store_test:${IMAGE_TAG:-master}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment