Skip to content

Commit

Permalink
Merge pull request #3 from goodservers/feature/listed-apps
Browse files Browse the repository at this point in the history
Non-escaped REGISTRY_URL
  • Loading branch information
tomwagner committed Dec 10, 2018
2 parents 14538eb + 0b3c00f commit 0248c2b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion javascript/docker-compose.yml
Expand Up @@ -11,7 +11,7 @@ services:
build:
dockerfile: ./.deploy/Dockerfile
context: .
image: {{REGISTRY_URL}}:latest
image: {{{REGISTRY_URL}}}:latest
restart: always
networks:
- nginx-proxy
Expand Down
2 changes: 1 addition & 1 deletion mysql/docker-compose.yml
Expand Up @@ -8,7 +8,7 @@ services:
dockerfile: ./.deploy/Dockerfile
context: .
container_name: {{PROJECT_NAME}}
image: {{REGISTRY_URL}}:latest
image: {{{REGISTRY_URL}}}:latest
networks:
- nginx-proxy
ports:
Expand Down
2 changes: 1 addition & 1 deletion static/docker-compose.yml
Expand Up @@ -9,7 +9,7 @@ networks:
services:
{{PROJECT_NAME}}:
build: .
image: {{REGISTRY_URL}}:latest
image: {{{REGISTRY_URL}}}:latest
restart: always
networks:
- nginx-proxy
Expand Down
4 changes: 2 additions & 2 deletions wordpress/docker-compose.yml
Expand Up @@ -9,7 +9,7 @@ services:
build:
dockerfile: ./.deploy/nginx/Dockerfile
context: .
image: {{REGISTRY_URL}}/nginx:latest
image: {{{REGISTRY_URL}}}/nginx:latest
networks:
- nginx-proxy
environment:
Expand All @@ -33,7 +33,7 @@ services:
build:
dockerfile: ./.deploy/php/Dockerfile
context: .
image: {{REGISTRY_URL}}/php:latest
image: {{{REGISTRY_URL}}}/php:latest
restart: always
ports:
- 9000
Expand Down

0 comments on commit 0248c2b

Please sign in to comment.